- Fixed duplicate component calls

- Removed loading screen items in SP
- Re-Added custom loading screens for servers
This commit is contained in:
Garrett
2023-12-19 22:37:03 -06:00
parent 04bbf37b12
commit 410ad52b59
6 changed files with 763 additions and 131 deletions

View File

@@ -33,7 +33,7 @@ namespace SeamlessClient
private Assembly thisAssembly => typeof(Seamless).Assembly;
private bool Initilized = false;
public static bool isSeamlessServer { get; private set; } = false;
public static bool isDebug = true;
public static bool isDebug = false;
@@ -155,11 +155,10 @@ namespace SeamlessClient
{
}
public void Update()
{
allComps.ForEach(x => x.Update());
if (MyAPIGateway.Multiplayer == null)
{
isSeamlessServer = false;
@@ -174,7 +173,7 @@ namespace SeamlessClient
Initilized = true;
}
allComps.ForEach(x => x.Update());
}