Fixes jogging on wet tiles actually slipping you if you have less than 20 stamloss.

This commit is contained in:
Ghommie
2019-07-28 19:35:53 +02:00
parent 39dea966ae
commit 7b681f4129
+1 -1
View File
@@ -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, "<span class='notice'>You slipped[ O ? " on the [O.name]" : ""]!</span>")