1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-28 16:32:18 +00:00

Only show graves in IF with default colors if higher_contrast is set.

This commit is contained in:
Jacob Mandelson 2025-06-21 23:28:53 -07:00
parent 2012520e8f
commit 77ab546a10

View File

@ -209,10 +209,12 @@ void celldrawer::setcolors() {
for(int a=0; a<21; a++)
if((b >> a) & 1)
fcol += variant::features[a].color_change;
/*if(c->wall == waAncientGrave)
wcol = 0x080808;
else if(c->wall == waFreshGrave)
wcol = 0x202020;*/
if(!higher_contrast) {
if(c->wall == waAncientGrave)
wcol = 0x080808;
else if(c->wall == waFreshGrave)
wcol = 0x202020;
}
break;
}
#endif