1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-12 03:33:00 +00:00

you can no longer see mines by changing the color of waMineUnknown/waMineMine

This commit is contained in:
Zeno Rogue
2018-12-11 18:59:35 +01:00
parent 3f92da8dc5
commit 2c0cda9fa8
2 changed files with 4 additions and 1 deletions

View File

@@ -2749,6 +2749,9 @@ void setcolors(cell *c, color_t& wcol, color_t& fcol) {
wcol = fcol = winf[c->wall].color;
if(c->wall == waMineMine)
wcol = fcol = winf[waMineUnknown].color;
// water colors
if(isWateryOrBoat(c) || c->wall == waReptileBridge) {
if(c->land == laOcean)