diff options
Diffstat (limited to 'src/commands/utilities/suicide.ts')
-rw-r--r-- | src/commands/utilities/suicide.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/utilities/suicide.ts b/src/commands/utilities/suicide.ts index be6730b..136de78 100644 --- a/src/commands/utilities/suicide.ts +++ b/src/commands/utilities/suicide.ts @@ -1,5 +1,5 @@ import { AllowedMentions, BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; -import { Embed } from 'discord.js'; +import { EmbedBuilder } from 'discord.js'; export default class SuicideCommand extends BushCommand { public constructor() { @@ -18,7 +18,7 @@ export default class SuicideCommand extends BushCommand { public override async exec(message: BushMessage | BushSlashMessage) { // stolen from https://github.com/dexbiobot/Zeppelin - const suicideEmbed = new Embed() + const suicideEmbed = new EmbedBuilder() .setTitle('Mental Health Resources') .setColor(util.colors.red) .setAuthor({ |