From be11f172d161d7b4d5772aa93ff6308bf02dc8e5 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Sat, 6 Apr 2024 18:42:45 -0500 Subject: [PATCH] pepperspray confusion no longer infinitely stacks (#24846) --- code/datums/status_effects/debuffs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/status_effects/debuffs.dm b/code/datums/status_effects/debuffs.dm index efcc3c3ab28..9edf7eb42ad 100644 --- a/code/datums/status_effects/debuffs.dm +++ b/code/datums/status_effects/debuffs.dm @@ -394,13 +394,13 @@ /datum/status_effect/pepper_spray/on_apply() . = ..() to_chat(owner, "Your throat burns!") - owner.AdjustConfused(12 SECONDS) + owner.AdjustConfused(12 SECONDS, bound_upper = 20 SECONDS) owner.Slowed(4 SECONDS) owner.apply_damage(40, STAMINA) /datum/status_effect/pepper_spray/refresh() . = ..() - owner.AdjustConfused(12 SECONDS) + owner.AdjustConfused(12 SECONDS, bound_upper = 20 SECONDS) owner.Slowed(4 SECONDS) owner.apply_damage(20, STAMINA)