summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 2fbe7db993..ab38a6717f 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -3107,8 +3107,8 @@ static int _mons_find_nearest_level_exit(const monsters *mon,
static void _mons_indicate_level_exit(const monsters *mon)
{
const dungeon_feature_type gridc = grd(mon->pos());
+ const bool is_shaft = (get_trap_type(mon->pos()) == TRAP_SHAFT);
- // All types of stairs.
if (is_gate(gridc))
simple_monster_message(mon, " passes through the gate.");
else if (is_travelable_stair(gridc))
@@ -3120,6 +3120,8 @@ static void _mons_indicate_level_exit(const monsters *mon)
dir == CMD_GO_DOWNSTAIRS ? "goes down"
: "takes").c_str());
}
+ else if (is_shaft && mons_flies(mon))
+ simple_monster_message(mon, " goes down the shaft.");
}
void make_mons_leave_level(monsters *mon)