From e082c441f05490bb69d09cd3ca2654b2bd6854b2 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Sun, 30 Nov 2014 21:45:37 -0500 Subject: [PATCH] False Wall Fixes --- code/game/objects/structures/false_walls.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm index 05173cb2c43..6406f46c462 100644 --- a/code/game/objects/structures/false_walls.dm +++ b/code/game/objects/structures/false_walls.dm @@ -83,8 +83,9 @@ ) /obj/structure/falsewall/New() - relativewall_neighbours() ..() + relativewall() + relativewall_neighbours() /obj/structure/falsewall/Destroy() @@ -108,7 +109,7 @@ icon_state = "[mineral]fwall_open" return - var/junction=findSmoothingNeighbors(check_minerals=1) + var/junction=findSmoothingNeighbors() icon_state = "[mineral][junction]"