diff --git a/bots/discord/src/commands/reply.ts b/bots/discord/src/commands/reply.ts index b73e1c2..a5fe0b2 100644 --- a/bots/discord/src/commands/reply.ts +++ b/bots/discord/src/commands/reply.ts @@ -1,3 +1,4 @@ +import { createStackTraceEmbed } from '$/utils/discord/embeds' import { PermissionFlagsBits, SlashCommandBuilder, type TextBasedChannel } from 'discord.js' import type { Command } from '.' @@ -48,7 +49,9 @@ export default { ephemeral: true, }) } catch (e) { - await interaction.reply({}) + await interaction.reply({ + embeds: [createStackTraceEmbed(e)], + }) } }, } satisfies Command