BEHOLD, MY SUPER LASER PISS

This commit is contained in:
reisenlol 2026-01-30 02:26:51 -08:00
parent 084aada510
commit e29208a2e5
No known key found for this signature in database
23 changed files with 760 additions and 20 deletions

View file

@ -40,7 +40,6 @@ public class Entity : MonoBehaviour
public void TakeDamage(float damage)
{
health -= damage;
health = Mathf.Clamp(health, 0, maxHealth);
if (health < 0)
{
OnKillEffects();