This commit is contained in:
Daniel Odendahl Jr
2017-04-30 22:56:59 +00:00
parent 83e990ae1c
commit 877f720cfc
105 changed files with 460 additions and 461 deletions
+3 -3
View File
@@ -11,8 +11,8 @@ module.exports = class EmojiCommand extends Command {
});
}
run(message) {
return message.say(message.guild.emojis.map(e => e).join(''))
.catch(() => message.say('There was an error sending the emoji. Perhaps you have no custom emoji?'));
run(msg) {
return msg.say(msg.guild.emojis.map(e => e).join(''))
.catch(() => msg.say('There was an error sending the emoji. Perhaps you have no custom emoji?'));
}
};