From 52acccb6aac9de9d7b268c813433e2abb82840f9 Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Sun, 4 Sep 2022 15:26:02 +0700 Subject: [PATCH] Fix map perfix not being used without acronym --- sources/GameModes/GameMode.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/GameModes/GameMode.uc b/sources/GameModes/GameMode.uc index 3c044f5..13589bd 100644 --- a/sources/GameModes/GameMode.uc +++ b/sources/GameModes/GameMode.uc @@ -146,7 +146,7 @@ public function Text GetAcronym() public function Text GetMapPrefix() { - if (acronym == "") { + if (mapPrefix == "") { return _.text.FromString("KF-"); } else {