From 999111fe59397de4063e6e78feea0dbe293cf5e8 Mon Sep 17 00:00:00 2001 From: Rafnik02 <141545822+Rafnik02@users.noreply.github.com> Date: Tue, 9 Jul 2024 07:25:10 +0800 Subject: [PATCH] tweak: lower slowed in shove. (#5334) --- code/modules/mob/living/carbon/human/species/_species.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/_species.dm b/code/modules/mob/living/carbon/human/species/_species.dm index cb21a5a6606..c53499bfcce 100644 --- a/code/modules/mob/living/carbon/human/species/_species.dm +++ b/code/modules/mob/living/carbon/human/species/_species.dm @@ -691,7 +691,7 @@ target.drop_from_active_hand() add_attack_logs(user, target, "Disarmed object out of hand", ATKLOG_ALL) else - target.Slowed(2.5 SECONDS, 1) + target.Slowed(2.5 SECONDS, 0.5) var/obj/item/I = target.get_active_hand() if(I) to_chat(target, span_warning("Your grip on [I] loosens!"))