From 076cbba3c48400d5a38018e3e2ed4c9887acd3fd Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 26 Jul 2021 13:51:57 -0400 Subject: [PATCH] Aaaand extra brackets I forgot --- code/datums/status_effects/buffs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm index 5f6179a5118..b30d579c3d8 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -181,7 +181,7 @@ itemUser.adjustStaminaLoss(-1.5) itemUser.adjustBrainLoss(-1.5) itemUser.adjustCloneLoss(-0.5) //Becasue apparently clone damage is the bastion of all health - if(heal_points < (max_heal_points)) + if(heal_points < max_heal_points) heal_points = min(heal_points += 3, max_heal_points) //Heal all those around you, unbiased for(var/mob/living/L in view(7, owner))