From 902b898e45b37ec0bacedf7a41730c4c56fb05bf Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Wed, 25 Sep 2024 20:14:18 -0400 Subject: [PATCH] Fixes False Wall Smoothing (FOR GOOD THIS TIME) (#26828) * Fixes False Wall Smoothing (FOR GOOD THIS TIME) * Update code/game/objects/structures/false_walls.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --------- Signed-off-by: Contrabang <91113370+Contrabang@users.noreply.github.com> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> --- code/game/objects/structures/false_walls.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/game/objects/structures/false_walls.dm b/code/game/objects/structures/false_walls.dm index 111c7931d9cc..7c7f95f3e8d9 100644 --- a/code/game/objects/structures/false_walls.dm +++ b/code/game/objects/structures/false_walls.dm @@ -167,6 +167,11 @@ new mineral(loc) qdel(src) +/obj/structure/falsewall/set_smoothed_icon_state(new_junction) + if(opening || !density) + return + return ..() + /* * False R-Walls */