From 2f9918b4b6726cd3349ba496372cda3a8fceb403 Mon Sep 17 00:00:00 2001 From: VampyrBytes Date: Sat, 13 Feb 2016 08:41:57 +0000 Subject: [PATCH] Fixes walking on water fixes #3589 missed a 0 in the arguments --- code/game/turfs/simulated.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated.dm b/code/game/turfs/simulated.dm index 15751f0a9d8..9c06ba63ad4 100644 --- a/code/game/turfs/simulated.dm +++ b/code/game/turfs/simulated.dm @@ -97,7 +97,7 @@ switch (src.wet) if(TURF_WET_WATER) - if (!(M.slip("wet floor", 4, 2, 1))) + if (!(M.slip("wet floor", 4, 2, 0, 1))) M.inertia_dir = 0 return