Merge pull request #13718 from Crazylemon64/note-to-self-keep-rerunning-travis

Fixes use of a no longer existent helper that prevented compilation
This commit is contained in:
Fox McCloud
2020-06-28 16:36:05 -04:00
committed by GitHub
@@ -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()