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.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 8d081759a9..d1d2401f9d 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -50,6 +50,7 @@
#include "spl-book.h"
#include "stuff.h"
#include "spl-util.h"
+#include "tutorial.h"
// ========================================================================
@@ -3310,6 +3311,13 @@ void describe_feature_wide(int x, int y)
clrscr();
print_description(desc);
+
+ if (Options.tutorial_left)
+ {
+ gotoxy(1, wherey() + 2);
+ tutorial_describe_feature(grd[x][y]);
+ }
+
if ( getch() == 0 )
getch();
}
@@ -3378,6 +3386,12 @@ void describe_item( item_def &item )
break;
}
+ if (Options.tutorial_left)
+ {
+ gotoxy(1, wherey() + 2);
+ tutorial_describe_item(item);
+ }
+
gotoxy(1, wherey() + 2);
formatted_string::parse_string("<cyan>Do you wish to inscribe this item? ").display();