From 404e949e95a74b05044dabe3a6358db976c02ce5 Mon Sep 17 00:00:00 2001 From: nhmall Date: Thu, 30 Jul 2026 22:35:47 -0400 Subject: [PATCH] one more follow-up --- include/monst.h | 2 +- src/steed.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/monst.h b/include/monst.h index c16d3010b..060995f86 100644 --- a/include/monst.h +++ b/include/monst.h @@ -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) diff --git a/src/steed.c b/src/steed.c index 63b72e9e0..4f24cdb5c 100644 --- a/src/steed.c +++ b/src/steed.c @@ -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 */ }