forked from zombieb/undead-universal-patch-il2cpp
- SignalR handshake fix
- Self-hosted PhotonSocketServer support - Split photon and hile event patch - Deprecated amplitude redirect patch
This commit is contained in:
13
Config.cs
13
Config.cs
@@ -8,7 +8,6 @@ namespace undead_universal_patch_il2cpp
|
||||
public static ConfigEntry<bool> LogAllRequests;
|
||||
public static ConfigEntry<bool> CertificatePatch;
|
||||
public static ConfigEntry<bool> HilePatch;
|
||||
public static ConfigEntry<bool> AmplitudeRedirectPatch;
|
||||
public static ConfigEntry<bool> SignalRHandshakeFix;
|
||||
public static ConfigEntry<bool> ImageSignaturePatch;
|
||||
}
|
||||
@@ -17,8 +16,7 @@ namespace undead_universal_patch_il2cpp
|
||||
public static bool LogAllRequests = false;
|
||||
public static bool CertificatePatch = false;
|
||||
public static bool HilePatch = false;
|
||||
public static bool AmplitudeRedirectPatch = true;
|
||||
public static bool SignalRHandshakeFix = true;
|
||||
public static bool SignalRHandshakeFix = false;
|
||||
public static bool ImageSignaturePatch = false;
|
||||
}
|
||||
public static class NameserverConfig
|
||||
@@ -34,14 +32,22 @@ namespace undead_universal_patch_il2cpp
|
||||
public static class PhotonConfig
|
||||
{
|
||||
public static ConfigEntry<bool> PatchPhotonIds;
|
||||
public static ConfigEntry<bool> PunLogging;
|
||||
public static ConfigEntry<bool> SelfHosted;
|
||||
public static ConfigEntry<string> AppID;
|
||||
public static ConfigEntry<string> VoiceAppID;
|
||||
public static ConfigEntry<string> ServerAddress;
|
||||
public static ConfigEntry<int> ServerPort;
|
||||
}
|
||||
public static class PhotonConfigDefaults
|
||||
{
|
||||
public static bool PatchPhotonIds = false;
|
||||
public static bool PunLogging = false;
|
||||
public static bool SelfHosted = false;
|
||||
public static string AppID = "replace-me-please";
|
||||
public static string VoiceAppID = "replace-me-please";
|
||||
public static string ServerAddress = "127.0.0.1";
|
||||
public static int ServerPort = 5055;
|
||||
}
|
||||
|
||||
public static class GalvanicConfig
|
||||
@@ -59,4 +65,5 @@ namespace undead_universal_patch_il2cpp
|
||||
public static string Export = "IDoNotWantToExportMyKeys";
|
||||
public static bool Import = false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user