From 6e6629af4dbd349981f8c2d1a372a9fe4b772483 Mon Sep 17 00:00:00 2001 From: Tedster59 Date: Sat, 16 Dec 2023 06:35:51 -0600 Subject: [PATCH] properly disable beta patch notes screen for now --- .../Src/LW_Overhaul/Classes/UISL_Shell_BetaPatchNotes.uc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LongWarOfTheChosen/Src/LW_Overhaul/Classes/UISL_Shell_BetaPatchNotes.uc b/LongWarOfTheChosen/Src/LW_Overhaul/Classes/UISL_Shell_BetaPatchNotes.uc index f1eba5e9a..1e62a0d02 100644 --- a/LongWarOfTheChosen/Src/LW_Overhaul/Classes/UISL_Shell_BetaPatchNotes.uc +++ b/LongWarOfTheChosen/Src/LW_Overhaul/Classes/UISL_Shell_BetaPatchNotes.uc @@ -121,6 +121,7 @@ event OnRemoved(UIScreen Screen) // SHOULD WE DISPLAY THE POPUP BASED ON CONFIG NUMBER static function bool ShouldShowWarningMsg() { + return false; // Show it because the version number is set to negative (testing)... if (default.iVersion_Installed <= -1) { @@ -157,5 +158,5 @@ static function bool ShouldShowWarningMsg() defaultproperties { ScreenClass = UIFinalShell; - iVersion_Installed = 0; // beta is on 18 + iVersion_Installed = 18; // beta is on 18 }