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