From a7f59ece7213ba867aed13f87480cebc02b6fecc Mon Sep 17 00:00:00 2001 From: ShizCalev Date: Sun, 9 Dec 2018 15:40:22 -0500 Subject: [PATCH] Fixes healing positional argument runtime --- code/modules/surgery/bodyparts/bodyparts.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/surgery/bodyparts/bodyparts.dm b/code/modules/surgery/bodyparts/bodyparts.dm index 1c5f9b394b8..b90575e0ce2 100644 --- a/code/modules/surgery/bodyparts/bodyparts.dm +++ b/code/modules/surgery/bodyparts/bodyparts.dm @@ -136,7 +136,7 @@ //Return TRUE to get whatever mob this is in to update health. /obj/item/bodypart/proc/on_life() if(stamina_dam > DAMAGE_PRECISION) //DO NOT update health here, it'll be done in the carbon's life. - if(heal_damage(brute = 0, burn = 0, stamina = stam_heal_tick, null, updating_health = FALSE)) + if(heal_damage(0, 0, stam_heal_tick, null, FALSE)) . |= BODYPART_LIFE_UPDATE_HEALTH //Applies brute and burn damage to the organ. Returns 1 if the damage-icon states changed at all.