Fixes use of a no longer existent helper that prevented compilation

This commit is contained in:
Crazylemon64
2020-06-28 14:29:42 -06:00
parent 93db61665d
commit c1b537f862
@@ -108,8 +108,8 @@
return
if(damage_protection)
brute = Clamp(brute - damage_protection, 0, brute)
burn = Clamp(burn - damage_protection, 0, burn)
brute = clamp(brute - damage_protection, 0, brute)
burn = clamp(burn - damage_protection, 0, burn)
var/list/datum/robot_component/parts = get_damageable_components()