From dab026de994c59603330852fb47f23708f28aecb Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Fri, 29 May 2026 23:55:48 +0200 Subject: [PATCH] feat(discord-bot): add separator for report messages --- apps/discord-bot/src/reporting.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/discord-bot/src/reporting.ts b/apps/discord-bot/src/reporting.ts index fa6196f..d5a103d 100644 --- a/apps/discord-bot/src/reporting.ts +++ b/apps/discord-bot/src/reporting.ts @@ -180,6 +180,7 @@ export const handleReportModal = async (interaction: ModalSubmitInteraction, cli const reportChannel = await client.channels.fetch(env.DISCORD_REPORT_CHANNEL); if (reportChannel?.type === ChannelType.GuildText) { const reportMessage = await reportChannel.send({ + content: "─────────────────────────────────", embeds: [buildReportEmbed({ playerName, playerId: player.id, reason, reporterId: interaction.user.id })], components: [reportActionRow(inserted.id)], });