From 44644d34b46fedd9638f7477ecd78074f979edaa Mon Sep 17 00:00:00 2001 From: HarpyEagle Date: Thu, 18 Jun 2015 12:55:31 -0400 Subject: [PATCH] Restores stop drop and roll time Returns the duration of stop drop and roll to 3 seconds. The amount of removed fire stacks was reduced by ~3/5 instead of lengthening the time. --- code/modules/mob/living/carbon/resist.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/carbon/resist.dm b/code/modules/mob/living/carbon/resist.dm index c99a8bd599f..56272f654e4 100644 --- a/code/modules/mob/living/carbon/resist.dm +++ b/code/modules/mob/living/carbon/resist.dm @@ -3,14 +3,14 @@ //drop && roll if(on_fire) - fire_stacks -= 2 - Weaken(5) - spin(52,2) + fire_stacks -= 1.2 + Weaken(3) + spin(32,2) visible_message( "[src] rolls on the floor, trying to put themselves out!", "You stop, drop, and roll!" ) - sleep(50) + sleep(30) if(fire_stacks <= 0) visible_message( "[src] has successfully extinguished themselves!",