From e16cf64267ccb733dac502067aa52f012a3c6b7c Mon Sep 17 00:00:00 2001 From: Alffd Date: Fri, 2 Feb 2018 23:11:02 -0500 Subject: [PATCH] less weaken Makes maximum atmospherics stun 4 seconds and reduces all other atmospheric stuns less then 4 seconds by 80% --- code/LINDA/LINDA_turf_tile.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/LINDA/LINDA_turf_tile.dm b/code/LINDA/LINDA_turf_tile.dm index a7f5ee69d39..a2414d9cac3 100644 --- a/code/LINDA/LINDA_turf_tile.dm +++ b/code/LINDA/LINDA_turf_tile.dm @@ -318,7 +318,7 @@ to_chat(src, "The pressure sends you flying!") if(ishuman(src)) var/mob/living/carbon/human/H = src - H.Weaken(min(pressure_difference / 10, 10)) + H.Weaken(min(pressure_difference / 50, 2)) spawn() throw_at(general_direction, pressure_difference / 10, pressure_difference / 200, null, 0, 0, null) last_forced_movement = air_master.current_cycle