Animated emoji, npm fix

This commit is contained in:
Daniel Odendahl Jr
2017-12-31 22:48:48 +00:00
parent d2e9bfbf3e
commit 0933c8f318
6 changed files with 24 additions and 9 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ module.exports = class MockingCommand extends Command {
run(msg, { text }) {
for (let i = 0; i < text.length; i += Math.floor(Math.random() * 4)) text[i] = text[i].toUpperCase();
return msg.say(`${text.join('')} <:sponge:318612443398144000>`);
return msg.say(`${text.join('')} <:sponge:390141884070363138>`);
}
};