Small overhaul

This commit is contained in:
2026-03-09 21:36:35 -04:00
parent 7d33eddd08
commit 3684517d1b
9 changed files with 182 additions and 29 deletions
+1 -1
View File
@@ -316,7 +316,7 @@ func _fire_beam() -> void:
func take_damage(amount: float) -> void:
current_health -= amount
_flash_timer = 0.1
EventBus.boss_health_changed.emit(maxf(current_health, 0.0), max_health)
EventBus.boss_health_changed.emit(maxf(current_health, 0.0), max_health, "THE SUPERVISOR")
if current_health <= 0.0:
_die()