From e4f4be2e800790ed63dc4516ac918569ed8cb526 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 19 Apr 2017 18:59:31 +0000 Subject: [PATCH] Fix Zalgo --- commands/textedit/zalgo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/textedit/zalgo.js b/commands/textedit/zalgo.js index 35f5c39d..f04b0a64 100644 --- a/commands/textedit/zalgo.js +++ b/commands/textedit/zalgo.js @@ -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}.`;