From 1c390cbbc5fd4a69a5be044066c3ba9245b5c9ab Mon Sep 17 00:00:00 2001 From: AnturK Date: Mon, 23 Apr 2018 02:16:18 +0200 Subject: [PATCH] Fixes falsewall letting through air. (#37306) * Fixes falsewall letting through air. * define --- code/game/objects/structures/false_walls.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm index e7a4333b74..842e540551 100644 --- a/code/game/objects/structures/false_walls.dm +++ b/code/game/objects/structures/false_walls.dm @@ -62,7 +62,6 @@ opening = FALSE return addtimer(CALLBACK(src, /obj/structure/falsewall/proc/toggle_open), 5) - air_update_turf(1) /obj/structure/falsewall/proc/toggle_open() if(!QDELETED(src)) @@ -70,6 +69,7 @@ set_opacity(density) opening = FALSE update_icon() + air_update_turf(TRUE) /obj/structure/falsewall/update_icon()//Calling icon_update will refresh the smoothwalls if it's closed, otherwise it will make sure the icon is correct if it's open if(opening)