This commit is contained in:
2025-02-27 16:26:04 +02:00
parent b721e2d25e
commit 43f6710697
21 changed files with 742 additions and 46 deletions

View File

@@ -11,6 +11,7 @@ using UnityEngine;
namespace BoneSync.Patching
{
/*
[HarmonyPatch(typeof(Pool))]
internal class PoolPatches
{
@@ -28,8 +29,13 @@ namespace BoneSync.Patching
{
MelonLogger.Msg("Flagged object for respawn: " + p.name);
}
[HarmonyPatch(nameof(Pool.InstantiatePoolee))]
[HarmonyPostfix]
private static void InstantiatePooleePatch(Pool __instance, ref Poolee __result)
{
MelonLogger.Msg("Instantiated object: " + __result.name);
}
}
}*/
}