summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/player.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 54d9f6dd30..624393f230 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -2958,11 +2958,6 @@ void gain_exp( unsigned int exp_gained, unsigned int* actual_gain,
level_change();
- // 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();
-
if (actual_gain != NULL)
*actual_gain = you.experience - old_exp;
@@ -3567,6 +3562,11 @@ void level_change(bool skip_attribute_increase)
}
redraw_skill(you.your_name, player_title());
+
+ // 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();
}
// Here's a question for you: does the ordering of mods make a difference?