From 0c654e43b7056e54a30bfc7916eeeccf361fb100 Mon Sep 17 00:00:00 2001 From: Mechoid Date: Sat, 16 Mar 2019 22:53:35 -0700 Subject: [PATCH] Fix line issue. --- .../mob/living/carbon/human/species/station/prometheans.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans.dm b/code/modules/mob/living/carbon/human/species/station/prometheans.dm index 886e76621b..cbe2363874 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -183,7 +183,8 @@ var/datum/species/shapeshifter/promethean/prometheans healing = FALSE // Heal remaining damage. - if(healing) if(H.getBruteLoss() || H.getFireLoss() || H.getOxyLoss() || H.getToxLoss()) + if(healing) + if(H.getBruteLoss() || H.getFireLoss() || H.getOxyLoss() || H.getToxLoss()) var/nutrition_cost = 0 // The total amount of nutrition drained every tick, when healing var/nutrition_debt = 0 // Holder variable used to store previous damage values prior to healing for use in the nutrition_cost equation. var/starve_mod = 1 // Lowering this lowers healing and increases agony multiplicatively.