kill cheatmanager, add configs

This commit is contained in:
Lapis
2026-04-03 13:39:51 -04:00
parent 78a9a2e824
commit 5a8b4b2d52
3 changed files with 39 additions and 10 deletions
+3 -3
View File
@@ -58,9 +58,9 @@ public class Photon_AppSettings_Patch
__result = new()
{
AppVersion = __result?.AppVersion,
AppIdRealtime = "c74d22b7-6665-41cf-9ce8-fc70b625caa6",
AppIdVoice = "f7adbf03-edae-4a7d-bb4b-9e06de75bd96",
AppIdChat = "4538ca46-903b-48d9-bf33-247ea468a29d",
AppIdRealtime = Plugin.AppIdRT.Value,
AppIdVoice = Plugin.AppIdVoice.Value,
AppIdChat = Plugin.AppIdChat.Value,
FixedRegion = "us",
UseNameServer = true,
Protocol = ConnectionProtocol.Udp,
+1 -1
View File
@@ -13,7 +13,7 @@ public class SendRequestPatch
Plugin.Log.LogInfo($"hi {request.Uri.Host}");
if (request.Uri.Host.ToString().Contains("ns.rec.net"))
request.Uri = new Il2CppSystem.Uri("https://ns.lapis.codes");
request.Uri = new Il2CppSystem.Uri(Plugin.ServerHostname.Value);
}
}
}