OnLogout, Steam platform auth in account creation. Not configurable to ensure server uses ticket to validate.

This commit is contained in:
2025-09-22 00:24:04 -04:00
parent 4649042ac1
commit 2ff60f8399
7 changed files with 132 additions and 15 deletions

View File

@@ -43,6 +43,7 @@ public class Initialization
UniversalPatchPlugin.Log.LogInfo("PATCH LIST END =========================");
}
// to be removed in a future update
try
{
CacheChangePatchConfigs();
@@ -62,8 +63,9 @@ public class Initialization
{
UniversalPatchPlugin.Log.LogInfo("Attaching game objects");
if (ServerPatchesConfig.CustomEmotes.Value) UniversalPatchPlugin.Instance.AddComponent<CustomEmotes>();
UniversalPatchPlugin.Instance.AddComponent<SteamPlatform>();
UniversalPatchPlugin.Instance.AddComponent<CustomPhoton>();
if (ServerPatchesConfig.CustomEmotes.Value) UniversalPatchPlugin.Instance.AddComponent<CustomEmotes>();
if (ServerPatchesConfig.CustomKnownDlls.Value) UniversalPatchPlugin.Instance.AddComponent<CustomCheatManager>();
if (ServerPatchesConfig.CustomGameConfigurations.Value) UniversalPatchPlugin.Instance.AddComponent<CustomGameManager>();
}