diff --git a/BoneSync/Patching/PoolPatches.cs b/BoneSync/Patching/PoolPatches.cs index c09bed0..16e9fa1 100644 --- a/BoneSync/Patching/PoolPatches.cs +++ b/BoneSync/Patching/PoolPatches.cs @@ -77,7 +77,7 @@ namespace BoneSync.Patching if (CallPatchedMethods.allowPatchedMethodCall) return; if (__instance == null) return; if (PoolBlacklist.isBlacklistedPool(__instance)) return; - MelonLogger.Msg("Patched Instantiating object in pool: " + __instance.name); + //MelonLogger.Msg("Patched Instantiating object in pool: " + __instance.name); __result.onSpawnDelegate = Il2CppSystem.Delegate.Combine(__result.onSpawnDelegate, (Il2CppSystem.Action)((g) => { PooleePatches.OnSpawnPatchPost(__result); })).Cast>(); __result.onDespawnDelegate = Il2CppSystem.Delegate.Combine(__result.onDespawnDelegate, (Il2CppSystem.Action)((g) => { PooleePatches.OnDespawnPatchPost(__result); })).Cast>(); @@ -141,7 +141,7 @@ namespace BoneSync.Patching if (syncable == null) return; - MelonLogger.Msg("Poolee.OnSpawn: " + __instance.gameObject.transform.GetPath() + " " + syncable.GetSyncId()); + //MelonLogger.Msg("Poolee.OnSpawn: " + __instance.gameObject.transform.GetPath() + " " + syncable.GetSyncId()); }