summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc16
1 files changed, 10 insertions, 6 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index cb5995b75f..5127bb33a6 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -1279,15 +1279,19 @@ static void input()
{
tutorial_healing_reminder();
}
- else if (!you.running &&
- Options.tutorial_events[TUT_SHIFT_RUN] &&
- you.num_turns >= 200)
+ else if (!you.running
+ && Options.tutorial_events[TUT_SHIFT_RUN]
+ && you.num_turns >= 200
+ && you.hp == you.hp_max
+ && you.magic_points == you.max_magic_points)
{
learned_something_new(TUT_SHIFT_RUN);
}
- else if (!you.running &&
- Options.tutorial_events[TUT_MAP_VIEW] &&
- you.num_turns >= 500)
+ else if (!you.running
+ && Options.tutorial_events[TUT_MAP_VIEW]
+ && you.num_turns >= 500
+ && you.hp == you.hp_max
+ && you.magic_points == you.max_magic_points)
{
learned_something_new(TUT_MAP_VIEW);
}