From 43dd37c4f150abe17117a744490aeb8f86869c05 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 6 Jul 2022 03:03:03 +0200 Subject: [PATCH] .die should now set to invisible, not dnd, but it doesn't seem to have an effect anyway --- src/NadekoBot/Modules/Administration/Self/SelfCommands.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Administration/Self/SelfCommands.cs b/src/NadekoBot/Modules/Administration/Self/SelfCommands.cs index a80f950c7..90396729e 100644 --- a/src/NadekoBot/Modules/Administration/Self/SelfCommands.cs +++ b/src/NadekoBot/Modules/Administration/Self/SelfCommands.cs @@ -335,7 +335,8 @@ public partial class Administration { try { - await _client.SetStatusAsync(UserStatus.DoNotDisturb); + await _client.SetStatusAsync(UserStatus.Invisible); + _ = _client.StopAsync(); await ReplyConfirmLocalizedAsync(strs.shutting_down); } catch