From c1b537f86260f0d294395129c2e5c16bf237d2d1 Mon Sep 17 00:00:00 2001 From: Crazylemon64 Date: Sun, 28 Jun 2020 14:29:42 -0600 Subject: [PATCH] Fixes use of a no longer existent helper that prevented compilation --- code/modules/mob/living/silicon/robot/robot_damage.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/robot_damage.dm b/code/modules/mob/living/silicon/robot/robot_damage.dm index 6d5d03a33ac..b7b81ed40b7 100644 --- a/code/modules/mob/living/silicon/robot/robot_damage.dm +++ b/code/modules/mob/living/silicon/robot/robot_damage.dm @@ -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()