This commit is contained in:
Daniel Odendahl Jr
2017-09-29 20:22:03 +00:00
parent 4cfa18c757
commit 4c2dee66d4
+2 -2
View File
@@ -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.';
}
}
]