summaryrefslogtreecommitdiff
path: root/src/commands/fun/emoji.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/fun/emoji.ts')
-rw-r--r--src/commands/fun/emoji.ts24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/commands/fun/emoji.ts b/src/commands/fun/emoji.ts
deleted file mode 100644
index f830387..0000000
--- a/src/commands/fun/emoji.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-import emoji from 'emoji-random';
-import { Command, CommandoMessage } from '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: CommandoMessage) {
- msg.reply(emoji.random());
- }
-}; \ No newline at end of file