diff options
Diffstat (limited to 'src/commands/info/icon.ts')
-rw-r--r-- | src/commands/info/icon.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/info/icon.ts b/src/commands/info/icon.ts index 9602d40..ed9ab0f 100644 --- a/src/commands/info/icon.ts +++ b/src/commands/info/icon.ts @@ -1,5 +1,5 @@ import { BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; -import { MessageEmbed, Permissions } from 'discord.js'; +import { Embed, Permissions } from 'discord.js'; export default class IconCommand extends BushCommand { constructor() { @@ -17,7 +17,7 @@ export default class IconCommand extends BushCommand { } override async exec(message: BushMessage | BushSlashMessage) { - const embed = new MessageEmbed() + const embed = new Embed() .setTimestamp() .setColor(util.colors.default) .setImage( |