From d0075b37b317edff1c2e4ea3d0dbe211616df39c Mon Sep 17 00:00:00 2001 From: vuonojenmustaturska Date: Mon, 9 Apr 2018 03:22:22 +0300 Subject: [PATCH] Fixes a turf runtime (#37038) --- code/game/turfs/simulated/chasm.dm | 2 +- code/game/turfs/simulated/floor/misc_floor.dm | 2 +- code/game/turfs/simulated/floor/plating/asteroid.dm | 2 +- code/game/turfs/simulated/lava.dm | 2 +- code/game/turfs/space/space.dm | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/game/turfs/simulated/chasm.dm b/code/game/turfs/simulated/chasm.dm index 1bb2a2b798..93590e935c 100644 --- a/code/game/turfs/simulated/chasm.dm +++ b/code/game/turfs/simulated/chasm.dm @@ -21,7 +21,7 @@ GET_COMPONENT(chasm_component, /datum/component/chasm) chasm_component.drop(AM) -/turf/open/chasm/MakeSlippery() +/turf/open/chasm/MakeSlippery(wet_setting, min_wet_time, wet_time_to_add, max_wet_time, permanent) return /turf/open/chasm/MakeDry() diff --git a/code/game/turfs/simulated/floor/misc_floor.dm b/code/game/turfs/simulated/floor/misc_floor.dm index d3f8d00be7..650a66adf1 100644 --- a/code/game/turfs/simulated/floor/misc_floor.dm +++ b/code/game/turfs/simulated/floor/misc_floor.dm @@ -129,7 +129,7 @@ burnt_states = list("noslip-scorched1","noslip-scorched2") slowdown = -0.3 -/turf/open/floor/noslip/MakeSlippery() +/turf/open/floor/noslip/MakeSlippery(wet_setting, min_wet_time, wet_time_to_add, max_wet_time, permanent) return /turf/open/floor/oldshuttle diff --git a/code/game/turfs/simulated/floor/plating/asteroid.dm b/code/game/turfs/simulated/floor/plating/asteroid.dm index 594fdabd70..4a28bfd004 100644 --- a/code/game/turfs/simulated/floor/plating/asteroid.dm +++ b/code/game/turfs/simulated/floor/plating/asteroid.dm @@ -33,7 +33,7 @@ /turf/open/floor/plating/asteroid/burn_tile() return -/turf/open/floor/plating/asteroid/MakeSlippery() +/turf/open/floor/plating/asteroid/MakeSlippery(wet_setting, min_wet_time, wet_time_to_add, max_wet_time, permanent) return /turf/open/floor/plating/asteroid/MakeDry() diff --git a/code/game/turfs/simulated/lava.dm b/code/game/turfs/simulated/lava.dm index a928c927d6..6cf3b64a20 100644 --- a/code/game/turfs/simulated/lava.dm +++ b/code/game/turfs/simulated/lava.dm @@ -14,7 +14,7 @@ /turf/open/lava/ex_act(severity, target) contents_explosion(severity, target) -/turf/open/lava/MakeSlippery() +/turf/open/lava/MakeSlippery(wet_setting, min_wet_time, wet_time_to_add, max_wet_time, permanent) return /turf/open/lava/acid_act(acidpwr, acid_volume) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index 8f628efc5f..b7082f77b5 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -163,7 +163,7 @@ A.newtonian_move(A.inertia_dir) -/turf/open/space/MakeSlippery() +/turf/open/space/MakeSlippery(wet_setting, min_wet_time, wet_time_to_add, max_wet_time, permanent) return /turf/open/space/singularity_act()