From f62fc4e32b97ff2043a92f98ca307278f4e9866c Mon Sep 17 00:00:00 2001 From: Garrett <52760019+Casimir255@users.noreply.github.com> Date: Tue, 10 Sep 2024 12:47:54 -0500 Subject: [PATCH] Revert --- Components/ServerSwitcherComponentOLD.cs | 3 ++- Seamless.cs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Components/ServerSwitcherComponentOLD.cs b/Components/ServerSwitcherComponentOLD.cs index 2b9f664..08aee58 100644 --- a/Components/ServerSwitcherComponentOLD.cs +++ b/Components/ServerSwitcherComponentOLD.cs @@ -186,7 +186,8 @@ namespace SeamlessClient.Components MyMultiplayer.Static.StartProcessingClientMessages(); //Recreate all controls... Will fix weird gui/paint/crap - MyGuiScreenHudSpace.Static.RecreateControls(true); + if(MyGuiScreenHudSpace.Static != null) + MyGuiScreenHudSpace.Static.RecreateControls(true); //MySession.Static.LocalHumanPlayer.BuildArmorSkin = OldArmorSkin; } diff --git a/Seamless.cs b/Seamless.cs index 72867e3..0014fa2 100644 --- a/Seamless.cs +++ b/Seamless.cs @@ -37,7 +37,7 @@ namespace SeamlessClient private bool Initilized = false; public static bool isSeamlessServer { get; private set; } = false; public static bool isDebug = false; - public static bool UseNewVersion = true; + public static bool UseNewVersion = false;