Assets/Scripts/Damageable.cs
@@ -32,6 +32,8 @@ { if (value > MaxHealth) { Debug.Log("Warum?"); _health = MaxHealth; } else @@ -85,6 +87,8 @@ { Health -= damage; isInvincible = true; CharacterEvents.characterDamaged.Invoke(gameObject, damage); } } }