From b6fb86cd95029480131c6c80de7fd71f7e32ead4 Mon Sep 17 00:00:00 2001 From: Yoshax Date: Mon, 17 Apr 2017 18:43:31 +0100 Subject: [PATCH] Does what ze captain wants --- code/game/turfs/simulated/water.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/turfs/simulated/water.dm b/code/game/turfs/simulated/water.dm index ec784cb63d..0b9d3e6b74 100644 --- a/code/game/turfs/simulated/water.dm +++ b/code/game/turfs/simulated/water.dm @@ -44,7 +44,7 @@ L.update_water() if(!istype(oldloc, /turf/simulated/floor/water)) to_chat(L, "You get drenched in water from entering \the [src]!") - AM.water_act(-5) + AM.water_act(5) ..() /turf/simulated/floor/water/Exited(atom/movable/AM, atom/newloc) @@ -94,7 +94,7 @@ return /mob/living/water_act(amount) - adjust_fire_stacks(amount * 5) + adjust_fire_stacks(-amount * 5) for(var/atom/movable/AM in contents) AM.water_act(amount)