From 99f315c87cf55bbd41822a42f497661fbd23763c Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sun, 10 May 2015 22:42:57 -0400 Subject: [PATCH] LINDA-Fix: Mobs On Fire --- code/LINDA/LINDA_fire.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/LINDA/LINDA_fire.dm b/code/LINDA/LINDA_fire.dm index 0f173f97fda..31281acbc01 100644 --- a/code/LINDA/LINDA_fire.dm +++ b/code/LINDA/LINDA_fire.dm @@ -57,6 +57,7 @@ /obj/effect/hotspot/New() ..() air_master.hotspots += src + perform_exposure() /obj/effect/hotspot/proc/perform_exposure() var/turf/simulated/floor/location = loc @@ -175,3 +176,7 @@ air_update_turf() return +/obj/effect/hotspot/Crossed(mob/living/L) + ..() + if(isliving(L)) + L.fire_act() \ No newline at end of file