using QSB.Patches; namespace QSB.QuantumSync.Patches { public class ClientQuantumStateChangePatches : QSBPatch { public override QSBPatchTypes Type => QSBPatchTypes.OnNonServerClientConnect; public override void DoPatches() { QSBCore.Helper.HarmonyHelper.AddPrefix("ChangeQuantumState", typeof(ClientQuantumStateChangePatches), nameof(ReturnFalsePatch)); QSBCore.Helper.HarmonyHelper.AddPrefix("ChangeQuantumState", typeof(ClientQuantumStateChangePatches), nameof(ReturnFalsePatch)); QSBCore.Helper.HarmonyHelper.AddPrefix("ChangeQuantumState", typeof(ClientQuantumStateChangePatches), nameof(ReturnFalsePatch)); } public static bool ReturnFalsePatch() => false; } }