From 51894566b1c1ba500f364fcae82201cf3ded8a19 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 30 May 2018 12:26:38 +0000 Subject: [PATCH] make prompt limit 0 --- structures/Command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/Command.js b/structures/Command.js index 25a07bb6..97bbf6f9 100644 --- a/structures/Command.js +++ b/structures/Command.js @@ -2,7 +2,7 @@ const { Command } = require('discord.js-commando'); class XiaoCommand extends Command { constructor(client, info) { - if (typeof info.argsPromptLimit === 'undefined') info.argsPromptLimit = 1; + if (typeof info.argsPromptLimit === 'undefined') info.argsPromptLimit = 0; super(client, info); this.argsSingleQuotes = info.argsSingleQuotes || false;