diff --git a/commands/text-edit/zalgo.js b/commands/text-edit/zalgo.js index c499b42c..f97917e6 100644 --- a/commands/text-edit/zalgo.js +++ b/commands/text-edit/zalgo.js @@ -15,8 +15,8 @@ module.exports = class ZalgoCommand extends Command { prompt: 'What text would you like to convert to zalgo?', type: 'string', validate: text => { - if (text.length < 500) return true; - return 'Invalid text, please keep the text under 500 characters.'; + if (text.length < 200) return true; + return 'Invalid text, please keep the text under 200 characters.'; } } ]