More globals moved to instance_globals.

This commit is contained in:
Bart House
2018-12-19 21:26:35 -08:00
parent b7a0e69998
commit 576eece500
65 changed files with 498 additions and 505 deletions

View File

@@ -234,7 +234,7 @@ register struct monst *mtmp;
reset_faint(); /* if fainted - wake up */
} else {
stop_occupation();
if (multi > 0) {
if (g.multi > 0) {
nomul(0);
unmul((char *) 0);
}
@@ -263,7 +263,7 @@ register struct monst *mtmp;
(cash * (rnd(80) + 20 * Athome))
/ (100 * (1 + (sgn(u.ualign.type) == sgn(mtmp->data->maligntyp))));
if (!demand || multi < 0) { /* you have no gold or can't move */
if (!demand || g.multi < 0) { /* you have no gold or can't move */
mtmp->mpeaceful = 0;
set_malign(mtmp);
return 0;