patch IsLockedByProbeSnapshot

This commit is contained in:
_nebula 2023-01-23 20:14:05 +00:00
parent e49dd307f5
commit e069416b89

View File

@ -45,4 +45,12 @@ public class QuantumObjectPatches : QSBPatch
{
return false;
}
[HarmonyPrefix]
[HarmonyPatch(nameof(QuantumObject.IsLockedByProbeSnapshot))]
public static bool IsLockedByProbeSnapshot(QuantumObject __instance, ref bool __result)
{
__result = __instance._visibleInProbeSnapshot;
return false;
}
}