From 06ff995bbb1b7fb039e21ad456e57167cba75742 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 16 Apr 2026 23:56:16 +0200 Subject: [PATCH] ru:: display hidden stuff in the map mode --- rogueviz/ru/render.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rogueviz/ru/render.cpp b/rogueviz/ru/render.cpp index 9bfcff03..18537001 100644 --- a/rogueviz/ru/render.cpp +++ b/rogueviz/ru/render.cpp @@ -160,6 +160,8 @@ void render_room_walls(room *r) { int cc = c >> 3; + if(!af) for(auto [hid, unh]: hidden_unhidden) if(cc == int(hid)) cc = int(unh); + if(r == current_room && cc == wSecretPassageVHidden && r->fov[y+1][x] && r->fov[y-1][x]) { r->replace_block(x, y, wSecretPassageV); }