Files
xiao/structures/Command.js
T
Daniel Odendahl Jr 637355d7a0 This is better
2018-05-30 12:10:06 +00:00

14 lines
355 B
JavaScript

const { Command } = require('discord.js-commando');
class XiaoCommand extends Command {
constructor(client, info) {
super(client, info);
this.argsPromptLimit = info.argsPromptLimit || 1;
this.argsSingleQuotes = info.argsSingleQuotes || false;
this.throttling = info.throttling || { usages: 1, duration: 2 };
}
}
module.exports = XiaoCommand;