1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

do not display moWolfMoved kills (the last one was actually fixing Blizzard)

This commit is contained in:
Zeno Rogue 2018-01-25 17:18:55 +01:00
parent a6563420ed
commit 9b0e587609

View File

@ -1948,6 +1948,7 @@ void killMonster(cell *c, eMonster who, flagtype deathflags) {
if(!isBulletType(m)) kills[m]++;
if(m == moHunterGuard) m = moHunterDog;
if(m == moHunterChanging) m = moHunterDog;
if(m == moWolfMoved) m = moWolf;
if(!c->item) if(m == moButterfly && (deathflags & AF_BULL))
c->item = itBull;