diff --git a/package.json b/package.json index 4fa96157..6fe6e600 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "127.0.0", + "version": "127.0.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": { diff --git a/structures/Command.js b/structures/Command.js index db7eb01a..24fcc49c 100644 --- a/structures/Command.js +++ b/structures/Command.js @@ -5,6 +5,7 @@ module.exports = class XiaoCommand extends Command { super(client, info); this.argsSingleQuotes = info.argsSingleQuotes || false; + this.argsPromptLimit = info.argsPromptLimit || 1; this.throttling = info.unknown ? null : info.throttling || { usages: 1, duration: 2 }; this.uses = 0; this.credit = info.credit || [];