From f2ca8de7c67ee83d34e78b6fd943ab9100b575b1 Mon Sep 17 00:00:00 2001 From: faketuna Date: Wed, 10 Sep 2025 19:27:14 +0900 Subject: [PATCH] modify: fix possible bizzare text output --- .../MapVote/Countdown/CenterHtml/McsCenterHtmlCountdownUi.cs | 2 +- .../MapVote/Countdown/CenterHud/McsCenterHudCountdownUi.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MapChooserSharp/Modules/MapVote/Countdown/CenterHtml/McsCenterHtmlCountdownUi.cs b/MapChooserSharp/Modules/MapVote/Countdown/CenterHtml/McsCenterHtmlCountdownUi.cs index 13b3c06..f251ea7 100644 --- a/MapChooserSharp/Modules/MapVote/Countdown/CenterHtml/McsCenterHtmlCountdownUi.cs +++ b/MapChooserSharp/Modules/MapVote/Countdown/CenterHtml/McsCenterHtmlCountdownUi.cs @@ -16,6 +16,6 @@ public void ShowCountdownToPlayer(CCSPlayerController player, int secondsLeft, M public void Close(CCSPlayerController player) { - player.PrintToCenterHtml(""); + player.PrintToCenterHtml(" "); } } \ No newline at end of file diff --git a/MapChooserSharp/Modules/MapVote/Countdown/CenterHud/McsCenterHudCountdownUi.cs b/MapChooserSharp/Modules/MapVote/Countdown/CenterHud/McsCenterHudCountdownUi.cs index 5f2234d..9586739 100644 --- a/MapChooserSharp/Modules/MapVote/Countdown/CenterHud/McsCenterHudCountdownUi.cs +++ b/MapChooserSharp/Modules/MapVote/Countdown/CenterHud/McsCenterHudCountdownUi.cs @@ -16,6 +16,6 @@ public void ShowCountdownToPlayer(CCSPlayerController player, int secondsLeft, M public void Close(CCSPlayerController player) { - player.PrintToCenter(""); + player.PrintToCenter(" "); } } \ No newline at end of file