From 043ad94262d48fe732b945f0ac31e070b3bcd6ed Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 23 Oct 2025 16:05:24 +0200 Subject: [PATCH] Fix pre-round Discord ahelps showing incorrect round number (#41060) Why was there a +1 ??? --- Content.Server/Administration/Systems/BwoinkSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 2df9aa9fcc..91211716b5 100644 --- a/Content.Server/Administration/Systems/BwoinkSystem.cs +++ b/Content.Server/Administration/Systems/BwoinkSystem.cs @@ -582,7 +582,7 @@ namespace Content.Server.Administration.Systems { GameRunLevel.PreRoundLobby => _gameTicker.RoundId == 0 ? "pre-round lobby after server restart" // first round after server restart has ID == 0 - : $"pre-round lobby for round {_gameTicker.RoundId + 1}", + : $"pre-round lobby for round {_gameTicker.RoundId}", GameRunLevel.InRound => $"round {_gameTicker.RoundId}", GameRunLevel.PostRound => $"post-round {_gameTicker.RoundId}", _ => throw new ArgumentOutOfRangeException(nameof(_gameTicker.RunLevel),