feat(discord-bot): add separator for report messages
All checks were successful
Build and Push Docker Image / typecheck (push) Successful in 31s
Build and Push Docker Image / build (push) Successful in 52s

This commit is contained in:
2026-05-29 23:55:48 +02:00
parent d76ac73d84
commit dab026de99

View File

@@ -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)],
});