Fix line issue.

This commit is contained in:
Mechoid
2019-03-16 22:53:35 -07:00
parent 40968890ed
commit 0c654e43b7
@@ -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.