From 7db4319aee49dd54e0ac86b7b4820430183adc43 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Fri, 20 Jan 2023 14:39:35 -0500 Subject: [PATCH] fixes weakened issue (#20262) --- code/modules/mob/living/status_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/status_procs.dm b/code/modules/mob/living/status_procs.dm index ed30b4686b3..e1f04dfc1b8 100644 --- a/code/modules/mob/living/status_procs.dm +++ b/code/modules/mob/living/status_procs.dm @@ -741,7 +741,7 @@ STATUS EFFECTS if(F) F.duration += amount else if(amount > 0) - F = apply_status_effect(STATUS_EFFECT_WEAKENED, amount) + F = apply_status_effect(STATUS_EFFECT_FLOORED, amount) return F