diff --git a/Assets/Scripts/ZombieController.cs b/Assets/Scripts/ZombieController.cs index 905fce3..8e62493 100644 --- a/Assets/Scripts/ZombieController.cs +++ b/Assets/Scripts/ZombieController.cs @@ -34,7 +34,7 @@ public class ZombieController : MonoBehaviour private AudioSource audioSource; private float lastSfxPlay; - private bool IsDead() => currentHealth == 0; + private bool IsDead() => currentHealth <= 0; private void Start() {