moves, monstermoves, wailmsg, migrating_objs and billobjs moved to g.

This commit is contained in:
Bart House
2018-12-24 20:22:33 -08:00
parent be5cdcf77a
commit 90547edb83
47 changed files with 224 additions and 228 deletions

View File

@@ -741,7 +741,7 @@ clear_bypasses()
}
for (otmp = invent; otmp; otmp = otmp->nobj)
otmp->bypass = 0;
for (otmp = migrating_objs; otmp; otmp = otmp->nobj)
for (otmp = g.migrating_objs; otmp; otmp = otmp->nobj)
otmp->bypass = 0;
for (mtmp = fmon; mtmp; mtmp = mtmp->nmon) {
if (DEADMONSTER(mtmp))
@@ -762,7 +762,7 @@ clear_bypasses()
/* no MCORPSENM(mtmp)==PM_LONG_WORM check here; long worms can't
be just created by polymorph and migrating at the same time */
}
/* billobjs and g.mydogs chains don't matter here */
/* g.billobjs and g.mydogs chains don't matter here */
context.bypasses = FALSE;
}