1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-28 16:32:18 +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++) for(int a=0; a<21; a++)
if((b >> a) & 1) if((b >> a) & 1)
fcol += variant::features[a].color_change; fcol += variant::features[a].color_change;
if(c->wall == waAncientGrave) /*if(c->wall == waAncientGrave)
wcol = 0x080808; wcol = 0x080808;
else if(c->wall == waFreshGrave) else if(c->wall == waFreshGrave)
wcol = 0x202020; wcol = 0x202020;*/
break; break;
} }
#endif #endif