From 2574ad72ca7e51b05f01b0b91f5cdd07e61c10be Mon Sep 17 00:00:00 2001 From: samvaio Date: Sat, 19 Nov 2016 14:29:39 +0530 Subject: [PATCH] Update SelfCommands.cs --- .../Modules/Administration/Commands/SelfCommands.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs b/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs index 60e9c8ce..0c634461 100644 --- a/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs +++ b/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs @@ -31,13 +31,13 @@ namespace NadekoBot.Modules.Administration if (server == null) { - await channel.SendMessageAsync("Cannot find that server").ConfigureAwait(false); + await channel.SendMessageAsync("⚠️ Cannot find that server").ConfigureAwait(false); return; } if (server.OwnerId != _client.GetCurrentUser().Id) { await server.LeaveAsync().ConfigureAwait(false); - await channel.SendMessageAsync("Left server " + server.Name).ConfigureAwait(false); + await channel.SendMessageAsync("✅ Left server " + server.Name).ConfigureAwait(false); } else { @@ -47,4 +47,4 @@ namespace NadekoBot.Modules.Administration } } } -} \ No newline at end of file +}