From 2523dc90bc24c5a296e985ab2537e2817f4b447a Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Mon, 26 Jul 2021 13:47:06 -0400 Subject: [PATCH] Update code/datums/status_effects/buffs.dm Co-authored-by: SabreML <57483089+SabreML@users.noreply.github.com> --- 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 0420a6ded95..085d76d215e 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -183,7 +183,7 @@ itemUser.adjustCloneLoss(-0.5) //Becasue apparently clone damage is the bastion of all health //Heal all those around you, unbiased if(heal_points < (max_heal_points)) - heal_points = min((heal_points += 3), max_heal_points) + heal_points = min(heal_points += 3, max_heal_points) for(var/mob/living/L in view(7, owner)) if(heal_points <= 0) break