diff options
Diffstat (limited to 'src/commands/info/botInfo.ts')
-rw-r--r-- | src/commands/info/botInfo.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts index 406ea2d..120527d 100644 --- a/src/commands/info/botInfo.ts +++ b/src/commands/info/botInfo.ts @@ -1,7 +1,7 @@ import { Message, MessageEmbed } from 'discord.js'; import { duration } from 'moment'; import { BushCommand } from '../../lib/extensions/BushCommand'; -import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage'; +import { BushSlashMessage } from '../../lib/extensions/BushInteractionMessage'; export default class BotInfoCommand extends BushCommand { constructor() { @@ -51,7 +51,7 @@ export default class BotInfoCommand extends BushCommand { await message.util.send({ embeds: [await this.generateEmbed()] }); } - public async execSlash(message: BushInteractionMessage): Promise<void> { + public async execSlash(message: BushSlashMessage): Promise<void> { await message.interaction.reply({ embeds: [await this.generateEmbed()] }); } } |