summaryrefslogtreecommitdiff
path: root/src/commands/fun/emoji.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/emoji.js')
-rw-r--r--src/commands/fun/emoji.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/commands/fun/emoji.js b/src/commands/fun/emoji.js
deleted file mode 100644
index ca633b9..0000000
--- a/src/commands/fun/emoji.js
+++ /dev/null
@@ -1,24 +0,0 @@
-const emoji = require('emoji-random');
-const { Command } = require('discord.js-commando');
-
-module.exports = class EmojiFun extends Command {
- constructor(client) {
- super(client, {
- name: 'emoji',
- aliases: ['moji'],
- group: 'fun',
- memberName: 'emoji',
- description: 'Gives you a random emoji.' + emoji.random(),
- throttling: {
- usages: 5,
- duration: 30
- },
- examples: ['uwu!emoji', 'uwu!moji'],
- userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
- clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY']
- });
- }
- run(msg) {
- msg.reply(emoji.random());
- }
-}; \ No newline at end of file