summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 5ac9124d99..238be50b2d 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -2431,7 +2431,9 @@ void gain_exp( unsigned int exp_gained )
you.exp_available += exp_gained;
level_change();
- if (Options.tutorial_left && you.experience_level == 5)
+ // increase tutorial time-out now that it's actually
+ // become useful for a longer time
+ if (Options.tutorial_left && you.experience_level == 7)
tutorial_finished();
} // end gain_exp()