diff --git a/NewHorizons/Patches/RaftPatches.cs b/NewHorizons/Patches/RaftPatches.cs index 79af3b4b..c6cb2c03 100644 --- a/NewHorizons/Patches/RaftPatches.cs +++ b/NewHorizons/Patches/RaftPatches.cs @@ -111,5 +111,14 @@ namespace NewHorizons.Patches return false; } + + /* For debugging + [HarmonyPrefix] + [HarmonyPatch(typeof(FluidDetector), nameof(FluidDetector.AddVolume), new Type[] { typeof(EffectVolume) })] + public static void FluidDetector_AddVolume(FluidDetector __instance, EffectVolume eVol) + { + Logger.Log($"[{__instance}] : AddVolume [{eVol}]"); + } + */ } }