From 40241423298765e1c9161339771d72f0300ff04e Mon Sep 17 00:00:00 2001 From: gatordile2 <155238175+gatordile2@users.noreply.github.com> Date: Fri, 5 Jan 2024 20:39:07 -0600 Subject: [PATCH] Update BossFinalBoss.cs --- InGame/GameObjects/Bosses/BossFinalBoss.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InGame/GameObjects/Bosses/BossFinalBoss.cs b/InGame/GameObjects/Bosses/BossFinalBoss.cs index 149d082..39fd1bf 100644 --- a/InGame/GameObjects/Bosses/BossFinalBoss.cs +++ b/InGame/GameObjects/Bosses/BossFinalBoss.cs @@ -1680,7 +1680,7 @@ public Values.HitCollision OnHit(GameObject gameObject, Vector2 direction, HitTy } // ganon damage form - if (_ganonForm && !_aiDamageState.IsInDamageState() && (damageType & HitType.PegasusBootsSword) != 0) + if (_ganonForm && !_aiDamageState.IsInDamageState() && (((damageType & HitType.PegasusBootsSword) != 0) || (damageType & HitType.SwordSpin) != 0)) // gatordile - original hit types { _ganonLives -= damage; if (_ganonLives <= 0) @@ -1806,4 +1806,4 @@ private bool OnPush(Vector2 direction, PushableComponent.PushType type) return true; } } -} \ No newline at end of file +}