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:
parent
2012520e8f
commit
77ab546a10
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user