fixed leet message to long potentialy

This commit is contained in:
Kwoth 2016-07-29 14:01:55 +02:00
parent 3b2df8c6bc
commit 93a75ba92a

View File

@ -1,5 +1,6 @@
using Discord.Commands; using Discord.Commands;
using NadekoBot.Classes; using NadekoBot.Classes;
using NadekoBot.Extensions;
using System.Text; using System.Text;
//taken from //taken from
@ -291,7 +292,7 @@ namespace NadekoBot.Modules.Games.Commands
} }
#endregion #endregion
} }
return sb.ToString(); // Return result. return sb.ToString().TrimTo(1995); // Return result.
} }
internal override void Init(CommandGroupBuilder cgb) internal override void Init(CommandGroupBuilder cgb)