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,6 +1,6 @@
const { ArgumentType } = require('discord.js-commando');
class ImageArgumentType extends ArgumentType {
module.exports = class ImageArgumentType extends ArgumentType {
constructor(client) {
super(client, 'image');
}
@@ -19,6 +19,4 @@ class ImageArgumentType extends ArgumentType {
isEmpty(value, msg) {
return msg.attachments.size === 0;
}
}
module.exports = ImageArgumentType;
};