atmos: make fires more destructive

Fires can now burn through walls, windows, and (with a high enough
 temperature) rwalls.
New proc: adjacent_fire_act().  Called on turfs that a fire isn't able
 to spread to. (walls, floor surrounded by windows, etc.)

Signed-off-by: Mloc-Argent <colmohici@gmail.com>
This commit is contained in:
Mloc-Argent
2014-06-23 20:58:14 +01:00
parent 6d0098c4fb
commit 1aca3fe7f2
6 changed files with 39 additions and 5 deletions
+1 -1
View File
@@ -324,7 +324,7 @@
//checks if this window is full-tile one
/obj/structure/window/proc/is_fulltile()
if(dir in list(5,6,9,10))
if(dir & (dir - 1))
return 1
return 0