diff options
Diffstat (limited to 'src/commands/utility/time.ts')
| -rw-r--r-- | src/commands/utility/time.ts | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/commands/utility/time.ts b/src/commands/utility/time.ts deleted file mode 100644 index 78fe391..0000000 --- a/src/commands/utility/time.ts +++ /dev/null @@ -1,24 +0,0 @@ -import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando'; -//@ts-ignore no types -import emoji from 'emoji-random' - -module.exports = class TimeUtility extends Command { - constructor(client: CommandoClient) { - super(client, { - name: 'time', - group: 'utility', - memberName: 'time', - description: 'Check the time.', - examples: ['uwu!time'], - throttling: { - usages: 5, - duration: 30 - }, - userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY', 'MANAGE_MESSAGES'], - clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - }); - } - run(msg: CommandoMessage) { - return msg.reply(`The time is currently **${new Date()}**. ${emoji.random()}`) - } -};
\ No newline at end of file |