Fix Zalgo

This commit is contained in:
Daniel Odendahl Jr
2017-04-19 18:59:31 +00:00
parent d77f71b66a
commit e4f4be2e80
+1 -1
View File
@@ -14,7 +14,7 @@ module.exports = class ZalgoCommand extends Command {
prompt: 'What text would you like to convert to zalgo?',
type: 'string',
validate: content => {
if (content.length > 500) {
if (content.length < 500) {
return true;
}
return `Please keep your text under 500 characters, you have ${content.length}.`;