diff --git a/Components/ServerSwitcherComponent.cs b/Components/ServerSwitcherComponent.cs index 2e0a88f..1fdfc65 100644 --- a/Components/ServerSwitcherComponent.cs +++ b/Components/ServerSwitcherComponent.cs @@ -655,7 +655,7 @@ namespace SeamlessClient.ServerSwitching } catch (Exception ex) { - Seamless.TryShow($"An error occured while loading GPS points! You will have an empty gps list! \n {ex.ToString()}"); + Seamless.TryShow($"An error occurred while loading GPS points! You will have an empty gps list! \n {ex.ToString()}"); } diff --git a/Components/ServerSwitcherComponentOLD.cs b/Components/ServerSwitcherComponentOLD.cs index a39b100..5c6ee6d 100644 --- a/Components/ServerSwitcherComponentOLD.cs +++ b/Components/ServerSwitcherComponentOLD.cs @@ -379,7 +379,7 @@ namespace SeamlessClient.Components //Request client state batch (MyMultiplayer.Static as MyMultiplayerClientBase).RequestBatchConfirmation(); - MyMultiplayer.Static.PendingReplicablesDone += MyMultiplayer_PendingReplicablesDone; + MyMultiplayer.Static.PendingReplicablesDone += MyMultiplayer_PendingReplicableDone; //typeof(MyGuiScreenTerminal).GetMethod("CreateTabs") MySession.Static.LoadDataComponents(); @@ -392,13 +392,13 @@ namespace SeamlessClient.Components Seamless.TryShow("Loading Complete!"); } - private static void MyMultiplayer_PendingReplicablesDone() + private static void MyMultiplayer_PendingReplicableDone() { if (MySession.Static.VoxelMaps.Instances.Count > 0) { MySandboxGame.AreClipmapsReady = false; } - MyMultiplayer.Static.PendingReplicablesDone -= MyMultiplayer_PendingReplicablesDone; + MyMultiplayer.Static.PendingReplicablesDone -= MyMultiplayer_PendingReplicableDone; }