summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monstuff.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 577c88f392..5459242706 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -3127,10 +3127,10 @@ static void _mons_indicate_level_exit(const monsters *mon)
}
else if (is_shaft)
{
- if (mons_flies(mon))
- simple_monster_message(mon, " goes down the shaft.");
- else
- simple_monster_message(mon, " jumps into the shaft.");
+ simple_monster_message(mon,
+ make_stringf(" %s the shaft.",
+ mons_flies(mon) ? "goes down"
+ : "jumps into").c_str());
}
}