Merge pull request #34656 from ShizCalev/makeslippery

Fixes missing MakeSlippery() args
This commit is contained in:
Jordan Brown
2018-01-20 15:09:41 -05:00
committed by CitadelStationBot
parent 7ec2a4230d
commit bb51095b00
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -188,6 +188,6 @@
var/turf/T = get_turf(loc)
if(isopenturf(T))
var/turf/open/theturf = T
theturf.MakeSlippery(min_wet_time = 10, wet_time_to_add = 5)
theturf.MakeSlippery(TURF_WET_WATER, min_wet_time = 10, wet_time_to_add = 5)
user.visible_message("[user] empties out \the [src] onto the floor using the release valve.", "<span class='info'>You quietly empty out \the [src] using its release valve.</span>")
+1 -1
View File
@@ -236,7 +236,7 @@
soundloop.stop()
if(isopenturf(loc))
var/turf/open/tile = loc
tile.MakeSlippery(min_wet_time = 5, wet_time_to_add = 1)
tile.MakeSlippery(TURF_WET_WATER, min_wet_time = 5, wet_time_to_add = 1)
/obj/machinery/shower/attackby(obj/item/I, mob/user, params)