From 4c2dee66d464dacf3f00f4e3a6e6c3755e2d8fbe Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 29 Sep 2017 20:22:03 +0000 Subject: [PATCH] Beep --- commands/text-edit/zalgo.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.'; } } ]