From ff2133a24e295481b89293f212f943946f3418ec Mon Sep 17 00:00:00 2001 From: "giacomand@gmail.com" Date: Sun, 23 Dec 2012 21:55:37 +0000 Subject: [PATCH] -Uncommented the update_nearby_tiles overriding proc for border_only firedoors. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5385 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/machinery/doors/firedoor.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm index f4411c0deb7..07228f2709d 100644 --- a/code/game/machinery/doors/firedoor.dm +++ b/code/game/machinery/doors/firedoor.dm @@ -99,13 +99,15 @@ return 0 return 1 -/* + update_nearby_tiles(need_rebuild) if(!air_master) return 0 var/turf/simulated/source = loc var/turf/simulated/destination = get_step(source,dir) + update_heat_protection(loc) + if(need_rebuild) if(istype(source)) //Rebuild/update nearby group geometry if(source.parent) @@ -120,5 +122,4 @@ else if(istype(source)) air_master.tiles_to_update += source if(istype(destination)) air_master.tiles_to_update += destination - return 1 -*/ \ No newline at end of file + return 1 \ No newline at end of file