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 +}