From 054c713cec71c3010b1ac3eb0848f2b601db982f Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Wed, 15 Aug 2007 21:32:33 +0000 Subject: More stuff for the tutorial: - Enhanced handling of spellbooks and artefacts. - Feature descriptions now cover altars. - Added monster descriptions (out of depth and brands). Also: - space-only inscription counts as no inscription - ring of teleportation autoID's if no teleport randart In my last commit I forgot to mention that the descriptions were suggested by Richard Gould, and I'd like to give credit where credit is due. :) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2005 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/direct.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crawl-ref/source/direct.cc') 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 v for more information.)"; + print_formatted_paragraph(msg, 80); + } } #if (!DEBUG_DIAGNOSTICS) -- cgit v1.2.3-54-g00ecf