summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index 36ab799592..9521b7f6ea 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1708,6 +1708,11 @@ static void describe_cell(int mx, int my)
#if DEBUG_DIAGNOSTICS
stethoscope(i);
#endif
+ if (Options.tutorial_left && tutorial_monster_interesting(&menv[i]))
+ {
+ std::string msg = "(Press <w>v<lightgray> for more information.)";
+ print_formatted_paragraph(msg, 80);
+ }
}
#if (!DEBUG_DIAGNOSTICS)