1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-15 01:39:57 +00:00

hooks_draw no longer prevents other shmup::monsters from displaying

This commit is contained in:
Zeno Rogue 2018-07-09 21:14:52 +02:00
parent 8caa1f1354
commit a7fa9d7525

View File

@ -3193,7 +3193,7 @@ bool drawMonster(const transmatrix& V, cell *c, const transmatrix*& Vboat, trans
int q = ptds.size();
if(q != isize(ptds) && !m->inBoat) pushdown(c, q, view, zlev, true, false);
if(callhandlers(false, hooks_draw, V, c, m)) return false;
if(callhandlers(false, hooks_draw, V, c, m)) continue;
switch(m->type) {
case moPlayer: