From e51747dd42f7c9f54b2919fa386a3f891d046d9c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 9 May 2022 10:30:50 +0200 Subject: [PATCH] draw sidewalls for shallow --- celldrawer.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/celldrawer.cpp b/celldrawer.cpp index 97b44aa9..cbcdb18d 100644 --- a/celldrawer.cpp +++ b/celldrawer.cpp @@ -2315,6 +2315,13 @@ void celldrawer::draw_wall_full() { color_t col = (highwall(c) || c->wall == waTower) ? wcol : fcol; forCellIdEx(c2, i, c) if(chasmgraph(c2) && c2->wall != waShallow) if(placeSidewall(c, i, SIDE_BSHA, V, D(.6))) break; + forCellIdEx(c2, i, c) if(chasmgraph(c2) == 2) { + dynamicval qfib(qfi, qfi); + set_floor(cgi.shFullFloor); + placeSidewall(c, i, SIDE_LAKE, V, 0x202030FF); + // placeSidewall(c, i, SIDE_LTOB, V, 0x181820FF); + placeSidewall(c, i, SIDE_BTOI, V, 0x101010FF); + } } else if(wmspatial && sha && WDIM == 2) {