From 331211cb4f70c1a44e82ab42f5a59b98b372914c Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 4 Aug 2023 20:37:58 -0400 Subject: [PATCH] Remove unnecessary null or empty check --- NewHorizons/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NewHorizons/Main.cs b/NewHorizons/Main.cs index 092c0284..e5801dc5 100644 --- a/NewHorizons/Main.cs +++ b/NewHorizons/Main.cs @@ -121,7 +121,7 @@ namespace NewHorizons // Else it doesn't get set idk if (currentScene == "TitleScreen" && SystemDict.ContainsKey(_defaultSystemOverride)) { - _currentStarSystem = string.IsNullOrEmpty(_defaultSystemOverride) ? "SolarSystem" : _defaultSystemOverride; + _currentStarSystem = _defaultSystemOverride; } var wasUsingCustomTitleScreen = _useCustomTitleScreen;