예제 #1
0
        static bool Prefix(LiveMixin __instance, ref bool __result)
        {
            if ((Object)__instance.gameObject.GetComponent <Player>() == (Object)null)
            {
                // Not the player taking damage, execute the function normally
                return(true);
            }

            // Check if OHKO flag is active
            if (OneHitKnockout.active)
            {
                // Reuse the kill logic from the LiveMixin, to ensure that cutscenes are handled properly.
                __result = true;
                if (!__instance.IsCinematicActive())
                {
                    __instance.Kill();
                }
                else
                {
                    __instance.cinematicModeActive = true;
                    __instance.SyncUpdatingState();
                }

                return(false);
            }

            return(true);
        }