.autodc added (Auto leave voice channel when all songs have been played)
This commit is contained in:
@ -332,6 +332,19 @@ namespace NadekoBot.Modules.Music
|
||||
mp.Stop();
|
||||
}
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
[RequireContext(ContextType.Guild)]
|
||||
public async Task AutoDisconnect()
|
||||
{
|
||||
var newVal = _service.ToggleAutoDc(Context.Guild.Id);
|
||||
|
||||
if(newVal)
|
||||
await ReplyConfirmLocalized("autodc_enable").ConfigureAwait(false);
|
||||
else
|
||||
await ReplyConfirmLocalized("autodc_disable").ConfigureAwait(false);
|
||||
}
|
||||
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
[RequireContext(ContextType.Guild)]
|
||||
public async Task Destroy()
|
||||
|
Reference in New Issue
Block a user