From 2172f58d47ef68dceac2e377f9ab707d3d429c64 Mon Sep 17 00:00:00 2001 From: Rob Nelson Date: Wed, 23 Jul 2014 17:42:52 -0700 Subject: [PATCH] Fire now affects the turf. --- code/ZAS/Fire.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/ZAS/Fire.dm b/code/ZAS/Fire.dm index 5c4f55410a2..6ab559732b4 100644 --- a/code/ZAS/Fire.dm +++ b/code/ZAS/Fire.dm @@ -127,6 +127,9 @@ turf/simulated/hotspot_expose(exposed_temperature, exposed_volume, soh) loc.fire_act(air_contents, air_contents.temperature, air_contents.return_volume()) for(var/atom/A in loc) A.fire_act(air_contents, air_contents.temperature, air_contents.return_volume()) + // Burn the turf, too. + S.fire_act(air_contents, air_contents.temperature, air_contents.return_volume()) + //spread for(var/direction in cardinal) var/turf/simulated/enemy_tile = get_step(S, direction)