From 261d7f8e178a1588fba422c48374b3b1374fbb0d Mon Sep 17 00:00:00 2001 From: matttheficus <57759731+matttheficus@users.noreply.github.com> Date: Tue, 28 Feb 2023 15:38:27 -0500 Subject: [PATCH] spam begone (#20519) --- code/datums/components/parry.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/parry.dm b/code/datums/components/parry.dm index 2747d11801b..f9816c23e9f 100644 --- a/code/datums/components/parry.dm +++ b/code/datums/components/parry.dm @@ -73,7 +73,7 @@ /datum/component/parry/proc/start_parry(mob/living/L) SIGNAL_HANDLER var/time_since_parry = world.time - time_parried - if(time_since_parry < parry_cooldown) // stops spam + if(time_since_parry < parry_cooldown + parry_time_out_time) // stops spam return time_parried = world.time