From 5685a8a7f878f443d9acd1708b5bae8f899d74de Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@users.noreply.github.com> Date: Sat, 7 Jan 2023 11:41:37 +1100 Subject: [PATCH] Remove unused command --- src/commands/smell.ts | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/commands/smell.ts diff --git a/src/commands/smell.ts b/src/commands/smell.ts deleted file mode 100644 index 6a1c1d9..0000000 --- a/src/commands/smell.ts +++ /dev/null @@ -1,12 +0,0 @@ -import Discord,{SlashCommandBuilder} from 'discord.js'; -import { TClient } from 'src/client'; -export default { - async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){ - const embed = new client.embed().setColor(client.config.embedColor).setTitle('Who smells?').setDescription('Dave and Monster! (Monster smells of staircases)').setImage('https://media.tenor.com/QW9S-Oq9INQAAAAC/patrick-smell.gif') - interaction.reply({embeds: [embed]}); - }, - data: new SlashCommandBuilder() - .setName('smell') - .setDescription('Who smells?') - .setDMPermission(false) -} \ No newline at end of file