From 7b681f4129403d2d985021feb65004c8d151f484 Mon Sep 17 00:00:00 2001 From: Ghommie Date: Sun, 28 Jul 2019 19:35:53 +0200 Subject: [PATCH] Fixes jogging on wet tiles actually slipping you if you have less than 20 stamloss. --- code/game/turfs/open.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index cff219c63e..f6d234b346 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -272,7 +272,7 @@ return 0 if(ishuman(C) && (lube&NO_SLIP_WHEN_WALKING)) var/mob/living/carbon/human/H = C - if(!H.sprinting && H.getStaminaLoss() >= 20) + if(!H.sprinting && H.getStaminaLoss() <= 20) return 0 if(!(lube&SLIDE_ICE)) to_chat(C, "You slipped[ O ? " on the [O.name]" : ""]!")