From ccdce84031671b9b10c9f1c0cd5554622b720bdf Mon Sep 17 00:00:00 2001 From: DGamerL <108773801+DGamerL@users.noreply.github.com> Date: Fri, 27 Feb 2026 20:37:26 +0100 Subject: [PATCH] Reinforced walls no longer lose smoothing upon being hit (#31700) --- code/game/turfs/simulated/walls_reinforced.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/turfs/simulated/walls_reinforced.dm b/code/game/turfs/simulated/walls_reinforced.dm index ca20194c7c3..d212da1d125 100644 --- a/code/game/turfs/simulated/walls_reinforced.dm +++ b/code/game/turfs/simulated/walls_reinforced.dm @@ -225,7 +225,7 @@ icon_state = "r_wall-[d_state]" smoothing_flags = NONE else - smoothing_flags = SMOOTH_BITMASK + smoothing_flags = SMOOTH_BITMASK | SMOOTH_OBJ icon_state = "[base_icon_state]-[smoothing_junction]" QUEUE_SMOOTH_NEIGHBORS(src) QUEUE_SMOOTH(src)