fernandodarci
fernandodarci
I found a strange decompiling bug in a yield instruction: `yield return new WaitWhile(Func(null, (nint)(&Program.get_IsOpen)));` After a fast search in the .Net documentation, and the code context, I figured out...
Sure: [Assembly-CSharp.zip](https://github.com/icsharpcode/ILSpy/files/8356091/Assembly-CSharp.zip) A third bug I found is called "return" case: `yield return new WaitUntil(new Func(this, (nint)__ldftn(ActionScene.get_MiniMapAndCameraActive)));` The correct is `yield return new WaitUntil(() => !MiniMapAndCameraActive);` This assembly is from...