Fix Everything

This commit is contained in:
Daniel Odendahl Jr
2017-06-01 18:31:20 +00:00
parent 66706d9c7b
commit 4e1f83a30f
85 changed files with 721 additions and 851 deletions
+3 -5
View File
@@ -12,10 +12,8 @@ module.exports = class EmojiCommand extends Command {
}
run(msg) {
const emoji = msg.guild.emojis;
if (!emoji.size) {
return msg.say('You have no Custom Emoji.');
}
return msg.say(emoji.map((e) => e).join(''));
const emojis = msg.guild.emojis;
if (!emojis.size) return msg.say('You have no Custom Emoji.');
return msg.say(emojis.map((emoji) => emoji).join(''));
}
};