Renamed damage instance
This commit is contained in:
@ -18,11 +18,11 @@ func restore():
|
||||
value = max_value
|
||||
value_changed.emit()
|
||||
|
||||
func take_damage(attack: DamageInstance):
|
||||
func take_damage(hit: Hit):
|
||||
if !is_alive:
|
||||
return
|
||||
|
||||
value = clampf(value - attack.damage, 0, max_value)
|
||||
value = clampf(value - hit.damage, 0, max_value)
|
||||
value_changed.emit()
|
||||
|
||||
if value < DEATH_THRESHOLD:
|
||||
|
Reference in New Issue
Block a user