diff options
Diffstat (limited to 'src/commands/info/pronouns.ts')
-rw-r--r-- | src/commands/info/pronouns.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/commands/info/pronouns.ts b/src/commands/info/pronouns.ts index 79baeef..2175233 100644 --- a/src/commands/info/pronouns.ts +++ b/src/commands/info/pronouns.ts @@ -1,8 +1,6 @@ import { CommandInteraction, Message, MessageEmbed, User } from 'discord.js'; import got, { HTTPError } from 'got'; -import { SlashCommandOption } from '../../lib/extensions/BushClientUtil'; import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; export const pronounMapping = { unspecified: 'Unspecified', @@ -55,7 +53,6 @@ export default class PronounsCommand extends BushCommand { required: false } ], - slashEphemeral: true, // I'll add dynamic checking to this later slash: true }); } @@ -107,8 +104,4 @@ export default class PronounsCommand extends BushCommand { const u = user || message.author; await this.sendResponse(message, u, u.id === message.author.id); } - async execSlash(message: BushSlashMessage, { user }: { user?: SlashCommandOption<void> }): Promise<void> { - const u = user?.user || message.author; - await this.sendResponse(message.interaction, u, u.id === message.author.id); - } } |