one more follow-up

This commit is contained in:
nhmall
2026-07-30 22:35:47 -04:00
parent 1e749c28ce
commit 404e949e95
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -258,7 +258,7 @@ struct monst {
#define mon_perma_blind(mon) (!mon->mcansee && !mon->mblinded)
#define MON_OFF_MAP_BITS (MON_OFFMAP | MON_DETACH | MON_LIMBO | MON_MIGRATING \
| MON_ENDGAME_FREE | MON_ENDGAME_MIGR | MON_BUBBLEMOVE)
| MON_ENDGAME_FREE | MON_ENDGAME_MIGR | MON_BUBBLEMOVE | MON_PARKED)
#define mon_offmap(mon) (((mon)->mstate & (MON_OFF_MAP_BITS)) != 0)
+1 -1
View File
@@ -938,7 +938,7 @@ place_monster(struct monst *mon, coordxy x, coordxy y)
mon->mstate &= ~(MON_OFF_MAP_BITS);
/* We don't mess with these bits above:
MON_OBLITERATE | MON_STILL_ARRIVING | MON_PARKED
MON_OBLITERATE | MON_STILL_ARRIVING
*/
}