Merge pull request #8995 from Ghommie/Ghommie-cit165

Fixes jogging on wet tiles actually slipping you if you have less than 20 stamloss
This commit is contained in:
kevinz000
2019-08-04 19:21:38 -07:00
committed by GitHub
+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>")