1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-23 21:07:17 +00:00

do not display moWolfMoved kills

This commit is contained in:
Zeno Rogue 2018-01-25 17:16:36 +01:00
parent 8a6e47043f
commit c3d38e2e1c

View File

@ -2693,7 +2693,7 @@ void buildRosemap() {
int& r = it->second;
if((r&7) == 1 || (r&7) == 2 || (r&7) == 3) r++;
if(airdist(it->first) < 3 || whirlwind::cat(it->first)) r |= 7;
if(c2->land == laBlizzard) r |= 7;
if(it->first->land == laBlizzard) r |= 7;
forCellEx(c2, it->first) if(airdist(c2) < 3) r |= 7;
}