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