1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

all treasures are important in Daily

This commit is contained in:
Zeno Rogue 2018-05-20 15:15:49 +02:00
parent 09b6eb8261
commit e2c0a86468

View File

@ -130,7 +130,7 @@ int glyphflags(int gid) {
f |= GLYPH_LOCAL | GLYPH_INSQUARE;
if(i == localshardof(cwt.c->land)) f |= GLYPH_LOCAL2;
}
if(i == treasureType(cwt.c->land))
if(i == treasureType(cwt.c->land) || daily::on)
f |= GLYPH_LOCAL | GLYPH_LOCAL2 | GLYPH_IMPORTANT | GLYPH_INSQUARE;
if(i == itHolyGrail) {
if(items[i] >= 3 && !inv::on) f |= GLYPH_MARKOVER;