1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-27 16:02:19 +00:00

Don't recolor the graves in the Irradiated Field, either.

This commit is contained in:
Jacob Mandelson 2025-06-21 21:58:08 -07:00
parent e0aa0847ce
commit 0bbeb3de0f

View File

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