Fixed ban command not messaging the reason

This commit is contained in:
Deukhoofd 2018-10-17 11:37:11 +02:00
parent 895229e872
commit 06c0bf1429
No known key found for this signature in database
GPG Key ID: B4C087AC81641654
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ namespace DeukBot4.MessageHandlers.CommandHandler
string desc = "No reason was given.";
if (!string.IsNullOrWhiteSpace(reason))
{
desc = "The given reason was: " + desc;
desc = "The given reason was: " + reason;
}
var eb = EmbedFactory.GetStandardEmbedBuilder();