From f031db8d4ba7883fd48ab2b4c7e48aec1718a256 Mon Sep 17 00:00:00 2001 From: Mervill Date: Thu, 19 Jan 2017 03:30:48 -0800 Subject: [PATCH] fixes a runtime related to incorrect argument syntax (#23097) --- code/modules/reagents/chemistry/reagents/other_reagents.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm index f30176ec558..ec3237b8adc 100644 --- a/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -263,7 +263,7 @@ if (!istype(T)) return if(reac_volume >= 1) - T.MakeSlippery(wet_setting=TURF_WET_LUBE, min_wet_time=15, min(wet_time_to_add=reac_volume*2, 120)) + T.MakeSlippery(TURF_WET_LUBE, 15, min(reac_volume * 2, 120)) /datum/reagent/spraytan name = "Spray Tan"