diff options
| -rw-r--r-- | commands/Utility/character.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/Utility/character.js b/commands/Utility/character.js index 3cca778..7d7ec6d 100644 --- a/commands/Utility/character.js +++ b/commands/Utility/character.js @@ -26,6 +26,7 @@ exports.run = (bot, msg, args) => { .setColor('#000'); const str = args.join(' '); + if (str.length > 500) return msg.reply('The limit is 500 for how many characters you can input'); const array = str.split(''); let decimal = ''; |
