more expanded-glyphs follow-up

relocate reset_glyphmap() call to more appropriate location
valley and mines unaligned altars are included in the level-specfic
colorization
This commit is contained in:
nhmall
2021-09-22 14:20:41 -04:00
parent fb37493f4a
commit c8c08a6aec
3 changed files with 7 additions and 4 deletions

View File

@@ -2334,7 +2334,10 @@ reset_glyphmap(enum glyphmap_change_triggers trigger)
if (Is_rogue_level(&u.uz)) {
g.glyphmap_perlevel_flags |= GMAP_ROGUELEVEL;
} else if ((Is_astralevel(&u.uz) || Is_sanctum(&u.uz))) {
} else if (Is_astralevel(&u.uz)
|| Is_sanctum(&u.uz)
|| In_mines(&u.uz)
|| Is_valley(&u.uz)) {
g.glyphmap_perlevel_flags |= GMAP_ALTARCOLOR;
}
}