From 24671a263fd084ccd0d19091cd3ad0a5f8fcbb91 Mon Sep 17 00:00:00 2001 From: Burzah <116982774+Burzah@users.noreply.github.com> Date: Tue, 5 Aug 2025 09:45:18 -0700 Subject: [PATCH] Updates a message for #new_round_alert (#29916) * initial commit * Update code/game/gamemodes/game_mode.dm Co-authored-by: warriorstar-orion Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> * moves a " --------- Signed-off-by: Burzah <116982774+Burzah@users.noreply.github.com> Co-authored-by: warriorstar-orion --- code/game/gamemodes/game_mode.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm index 8a4000edfd7..0e77fe92352 100644 --- a/code/game/gamemodes/game_mode.dm +++ b/code/game/gamemodes/game_mode.dm @@ -250,7 +250,8 @@ for(var/tech_id in SSeconomy.tech_levels) SSblackbox.record_feedback("tally", "cargo max tech level sold", SSeconomy.tech_levels[tech_id], tech_id) - GLOB.discord_manager.send2discord_simple(DISCORD_WEBHOOK_PRIMARY, "A round of [get_webhook_name()] has ended - [surviving_total] survivors, [ghosts] ghosts.") + var/round_text = GLOB.round_id ? "Round [GLOB.round_id]" : "Unknown Round" + GLOB.discord_manager.send2discord_simple(DISCORD_WEBHOOK_PRIMARY, "[round_text] of [get_webhook_name()] has ended - [surviving_total] survivors, [ghosts] ghosts.") if(SSredis.connected) // Send our presence to required channels var/list/presence_data = list()