1
0
mirror of https://gitlab.com/Deukhoofd/DeukBot4.git synced 2025-10-27 08:50:04 +00:00

Fixed ban command not messaging the reason

This commit is contained in:
2018-10-17 11:37:11 +02:00
parent 895229e872
commit 06c0bf1429

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();