1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-18 20:12:07 +00:00

shmup:: fixed a nonvirtual/active confusion

This commit is contained in:
Zeno Rogue
2026-04-16 19:15:20 +02:00
parent e2fd7351bd
commit 299293f983
+1 -1
View File
@@ -335,7 +335,7 @@ EX void popmonsters() {
m->dead = true; // already killed
// also kill all the other monsters pushed there
for(int j=0; j<i; j++) {
monster *m2 = active[j];
monster *m2 = nonvirtual[j];
if(m2->base == m->base && !m2->notpushed)
killMonster(m2, moNone);
}