From 58e97e44a1858431594940097d0ae777670cefd2 Mon Sep 17 00:00:00 2001 From: _nebula <41904486+misternebula@users.noreply.github.com> Date: Sun, 22 Jan 2023 19:51:03 +0000 Subject: [PATCH] whoops --- QSB/QuantumSync/Patches/Common/QuantumMoonPatches.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QSB/QuantumSync/Patches/Common/QuantumMoonPatches.cs b/QSB/QuantumSync/Patches/Common/QuantumMoonPatches.cs index 79d3e6cd..d5f33768 100644 --- a/QSB/QuantumSync/Patches/Common/QuantumMoonPatches.cs +++ b/QSB/QuantumSync/Patches/Common/QuantumMoonPatches.cs @@ -95,7 +95,7 @@ internal class QuantumMoonPatches : QSBPatch return false; } - private static bool GetShipInFog(QuantumMoon moon) + public static bool GetShipInFog(QuantumMoon moon) { if (ShipManager.Instance.IsShipWrecked) { @@ -108,7 +108,7 @@ internal class QuantumMoonPatches : QSBPatch return distanceFromFog < 10f; } - private static bool GetTransformInFog(QuantumMoon moon, Transform transform) + public static bool GetTransformInFog(QuantumMoon moon, Transform transform) { var distance = Vector3.Distance(moon.transform.position, transform.position); var fogOffset = (moon._stateIndex == 5) ? moon._eyeStateFogOffset : 0f;