From 905f88e8cb98bba75bf976e9617b233d4e1b243e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 7 Jun 2025 17:00:43 +0200 Subject: [PATCH] do not place sidewalls in 3D --- celldrawer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/celldrawer.cpp b/celldrawer.cpp index 6a063c7c..0a352176 100644 --- a/celldrawer.cpp +++ b/celldrawer.cpp @@ -2429,7 +2429,7 @@ void celldrawer::draw_wall_full() { } #if CAP_SHAPES - if(wmspatial) { + if(wmspatial && WDIM == 2) { color_t col = (highwall(c) || c->wall == waTower) ? wcol : fcol;