diff options
| author | 8cy <[email protected]> | 2020-04-13 05:32:35 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-13 05:32:35 -0700 |
| commit | 9dff52f7d047c905326bc2f476ede5463e00f2a0 (patch) | |
| tree | 1fec8563b3b72fde9b2ab7ad9e56a97398798685 /commands/fun/emoji.js | |
| parent | typescript (diff) | |
| download | s5nical-9dff52f7d047c905326bc2f476ede5463e00f2a0.tar.xz s5nical-9dff52f7d047c905326bc2f476ede5463e00f2a0.zip | |
typescript final
Diffstat (limited to 'commands/fun/emoji.js')
| -rw-r--r-- | commands/fun/emoji.js | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/commands/fun/emoji.js b/commands/fun/emoji.js deleted file mode 100644 index 027cd55..0000000 --- a/commands/fun/emoji.js +++ /dev/null @@ -1,22 +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 u a random emoji', - throttling: { - usages: 5, - duration: 30 - }, - examples: ['s5n!emoji', 's5n!moji'] - }); - } - run(msg) { - msg.reply(emoji.random()); - } -};
\ No newline at end of file |