diff --git a/src/Menu/Windows/ReflectionWindow.cs b/src/Menu/Windows/ReflectionWindow.cs index b4ed926..6288a48 100644 --- a/src/Menu/Windows/ReflectionWindow.cs +++ b/src/Menu/Windows/ReflectionWindow.cs @@ -36,13 +36,15 @@ namespace Explorer { // Causes a crash "Type.DeclaringMethod", + // Causes a crash + "Rigidbody2D.Cast", }; private static readonly HashSet _methodStartsWithBlacklist = new HashSet { // Pointless (handled by Properties) "get_", - "set_" + "set_", }; public override void Init() @@ -194,6 +196,8 @@ namespace Explorer continue; } + // MelonLogger.Log($"Trying to cache member {signature}..."); + try { var cached = CacheObjectBase.GetCacheObject(member, target);