Spell checks

This commit is contained in:
Garrett
2024-07-14 21:32:29 -05:00
parent 26a5f1ba07
commit 3175a6244a
2 changed files with 4 additions and 4 deletions

View File

@@ -655,7 +655,7 @@ namespace SeamlessClient.ServerSwitching
} }
catch (Exception ex) 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()}");
} }

View File

@@ -379,7 +379,7 @@ namespace SeamlessClient.Components
//Request client state batch //Request client state batch
(MyMultiplayer.Static as MyMultiplayerClientBase).RequestBatchConfirmation(); (MyMultiplayer.Static as MyMultiplayerClientBase).RequestBatchConfirmation();
MyMultiplayer.Static.PendingReplicablesDone += MyMultiplayer_PendingReplicablesDone; MyMultiplayer.Static.PendingReplicablesDone += MyMultiplayer_PendingReplicableDone;
//typeof(MyGuiScreenTerminal).GetMethod("CreateTabs") //typeof(MyGuiScreenTerminal).GetMethod("CreateTabs")
MySession.Static.LoadDataComponents(); MySession.Static.LoadDataComponents();
@@ -392,13 +392,13 @@ namespace SeamlessClient.Components
Seamless.TryShow("Loading Complete!"); Seamless.TryShow("Loading Complete!");
} }
private static void MyMultiplayer_PendingReplicablesDone() private static void MyMultiplayer_PendingReplicableDone()
{ {
if (MySession.Static.VoxelMaps.Instances.Count > 0) if (MySession.Static.VoxelMaps.Instances.Count > 0)
{ {
MySandboxGame.AreClipmapsReady = false; MySandboxGame.AreClipmapsReady = false;
} }
MyMultiplayer.Static.PendingReplicablesDone -= MyMultiplayer_PendingReplicablesDone; MyMultiplayer.Static.PendingReplicablesDone -= MyMultiplayer_PendingReplicableDone;
} }