summaryrefslogtreecommitdiff
path: root/commands/emoji.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands/emoji.js')
-rw-r--r--commands/emoji.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/commands/emoji.js b/commands/emoji.js
new file mode 100644
index 0000000..5724895
--- /dev/null
+++ b/commands/emoji.js
@@ -0,0 +1,10 @@
+const emoji = require('emoji-random');
+
+module.exports = {
+ name: 'emoji',
+ aliases: ['moji'],
+ description: '',
+ execute(msg, args, bot) {
+ msg.reply(emoji.random());
+ }
+}; \ No newline at end of file