summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 3d7e0720fd..3764151469 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -2579,6 +2579,13 @@ void describe_monsters(const monsters& mons)
break;
}
+ if (!mons.can_use_stairs())
+ {
+ body << mons_pronoun(static_cast<monster_type>(mons.type),
+ PRONOUN_CAP, true)
+ << " is incapable of using stairs.$";
+ }
+
std::string symbol_suffix = "__";
symbol_suffix += symbol;
symbol_suffix += "_suffix";