argsPromptLimit and no single quotes

This commit is contained in:
Daniel Odendahl Jr
2018-05-30 12:03:03 +00:00
parent b650b4d976
commit 0fb0537695
297 changed files with 308 additions and 296 deletions
+12
View File
@@ -0,0 +1,12 @@
const Command = require('../../structures/Command');
class XiaoCommand extends Command {
constructor(client) {
super(client, {
argsPromptLimit: 1,
argsSingleQuotes: false
});
}
}
module.exports = XiaoCommand;