From 94c0c1598d67907107f79585651f575d94b63f51 Mon Sep 17 00:00:00 2001 From: MrPerson Date: Sun, 5 Apr 2015 16:55:17 -0700 Subject: [PATCH] Fixes cleaner grenades Fixes #8757 Default for locate is "in world"! --- code/game/objects/effects/effect_system/effects_foam.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/effects/effect_system/effects_foam.dm b/code/game/objects/effects/effect_system/effects_foam.dm index 892bd547dc3..8bb92d6e51e 100644 --- a/code/game/objects/effects/effect_system/effects_foam.dm +++ b/code/game/objects/effects/effect_system/effects_foam.dm @@ -142,7 +142,7 @@ metal = metaltype /datum/effect/effect/system/foam_spread/start() - var/obj/effect/effect/foam/foundfoam = locate() + var/obj/effect/effect/foam/foundfoam = locate() in location if(foundfoam)//If there was already foam where we start, we add our foaminess to it. foundfoam.amount += amount else