Add ability to disable auto-reply commands in bot lists

This commit is contained in:
Dragon Fire
2020-04-11 11:15:27 -04:00
parent 6d02ac1dca
commit 6169f79125
12 changed files with 50 additions and 21 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
const Command = require('../../structures/Command');
const Command = require('../../structures/commands/AutoReply');
module.exports = class UnflipCommand extends Command {
constructor(client) {
@@ -11,7 +11,7 @@ module.exports = class UnflipCommand extends Command {
});
}
run(msg) {
return msg.say('┬─┬ ( ゜-゜ノ)');
generateText() {
return '┬─┬ ( ゜-゜ノ)';
}
};