Update CommandHandler.cs

- changed `⚠️` to actual emoji ⚠️
This commit is contained in:
samvaio 2016-11-25 17:53:02 +05:30 committed by GitHub
parent 046e0f34f6
commit 8c1865a234

View File

@ -185,7 +185,7 @@ namespace NadekoBot.Services
if (guild != null && command != null && result.Error == CommandError.Exception)
{
if (permCache != null && permCache.Verbose)
try { await msg.Channel.SendMessageAsync(":warning: " + result.ErrorReason).ConfigureAwait(false); } catch { }
try { await msg.Channel.SendMessageAsync("⚠️ " + result.ErrorReason).ConfigureAwait(false); } catch { }
}
}
else