make prompt limit 0

This commit is contained in:
Daniel Odendahl Jr
2018-05-30 12:26:38 +00:00
parent 2aa5b0f052
commit 51894566b1
+1 -1
View File
@@ -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;