improved ASCII: fixed domination

This commit is contained in:
Zeno Rogue 2021-04-15 17:55:58 +02:00
parent 9291e47400
commit 91cf680182
1 changed files with 2 additions and 2 deletions

View File

@ -2883,11 +2883,11 @@ EX bool drawMonster(const shiftmatrix& Vparam, int ct, cell *c, color_t col, col
ld depth = geom3::factor_to_lev(wormhead(c) == c ? cgi.AHEAD : cgi.ABODY);
footphase = 0;
int q = isize(ptds);
res = res || drawMonsterType(moPlayer, c, Vs, col, footphase, asciicol);
res = res | drawMonsterType(moPlayer, c, Vs, col, footphase, asciicol);
pushdown(c, q, Vs, -depth, true, false);
}
else res = res || drawMonsterType(moPlayer, c, Vs, col, footphase, asciicol);
else res = res | drawMonsterType(moPlayer, c, Vs, col, footphase, asciicol);
}
#endif
return res;