From eb1786ea01aa3756db249efce5b0be3eb8ed2262 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 25 Mar 2017 05:14:30 +0000 Subject: [PATCH] Remove Choices Validator --- commands/response/choose.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/commands/response/choose.js b/commands/response/choose.js index bf6e2817..eddfd8b8 100644 --- a/commands/response/choose.js +++ b/commands/response/choose.js @@ -14,10 +14,7 @@ module.exports = class ChooseCommand extends commando.Command { args: [{ key: 'choices', prompt: 'What choices do you want me pick from? Split them with " | "!', - type: 'string', - validate: (str) => { - str.includes(" | "); - } + type: 'string' }] }); }