Remove nsfw/useless commands, refactor stuff

This commit is contained in:
Dragon Fire
2018-08-15 19:34:34 -04:00
parent cc3680009a
commit b3c6b591d3
38 changed files with 192 additions and 531 deletions
+2 -4
View File
@@ -1,12 +1,10 @@
const { Command } = require('discord.js-commando');
class XiaoCommand extends Command {
module.exports = class XiaoCommand extends Command {
constructor(client, info) {
super(client, info);
this.argsSingleQuotes = info.argsSingleQuotes || false;
this.throttling = info.throttling || { usages: 1, duration: 2 };
}
}
module.exports = XiaoCommand;
};