From c6fbd97858a56cc97e625706816e401df0549dde Mon Sep 17 00:00:00 2001 From: MrDave1999 Date: Sun, 9 Aug 2026 16:21:17 -0500 Subject: [PATCH] refactor: reduce match result GameText duration Reduce the match result GameText duration from 4 seconds to 2 seconds to make the summary less intrusive during map rotation. --- src/Application/Teams/Matches/MatchResultAnnouncer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application/Teams/Matches/MatchResultAnnouncer.cs b/src/Application/Teams/Matches/MatchResultAnnouncer.cs index 5700e7a1..ae12be0f 100644 --- a/src/Application/Teams/Matches/MatchResultAnnouncer.cs +++ b/src/Application/Teams/Matches/MatchResultAnnouncer.cs @@ -23,6 +23,6 @@ public void Announce() }); worldService.SendClientMessage(Color.Yellow, resultMessage); - worldService.GameText(resultSummary, TimeSpan.FromSeconds(4), GameTextStyle.Style3); + worldService.GameText(resultSummary, TimeSpan.FromSeconds(2), GameTextStyle.Style3); } }