Revert "Stop works as it used to before. Auto rpl disabled."
This reverts commit fd410bc856
.
This commit is contained in:
parent
202c5e98a5
commit
f26a7de704
@ -62,7 +62,7 @@ namespace NadekoBot.Services.Music
|
||||
public bool RepeatCurrentSong { get; private set; }
|
||||
public bool Shuffle { get; private set; }
|
||||
public bool Autoplay { get; private set; }
|
||||
public bool RepeatPlaylist { get; private set; } = false;
|
||||
public bool RepeatPlaylist { get; private set; } = true;
|
||||
public uint MaxQueueSize
|
||||
{
|
||||
get => Queue.MaxQueueSize;
|
||||
@ -442,12 +442,12 @@ namespace NadekoBot.Services.Music
|
||||
}
|
||||
}
|
||||
|
||||
public void Stop(bool clearQueue = true)
|
||||
public void Stop(bool clearQueue = false)
|
||||
{
|
||||
lock (locker)
|
||||
{
|
||||
//Stopped = true;
|
||||
//Queue.ResetCurrent();
|
||||
Stopped = true;
|
||||
Queue.ResetCurrent();
|
||||
if (clearQueue)
|
||||
Queue.Clear();
|
||||
Unpause();
|
||||
|
Loading…
Reference in New Issue
Block a user