From 67724d484da0b713fd77ba6545ab6d285620f9d7 Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 30 Jun 2008 17:10:39 +0000 Subject: Redraw the player's experience level in the right place. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6255 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/ouch.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/ouch.cc') diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc index 0ba00752e0..7f61b825bf 100644 --- a/crawl-ref/source/ouch.cc +++ b/crawl-ref/source/ouch.cc @@ -666,7 +666,9 @@ void lose_level() you.hp, you.hp_max, you.magic_points, you.max_magic_points); take_note(Note(NOTE_XP_LEVEL_CHANGE, you.experience_level, 0, buf)); + redraw_skill(you.your_name, player_title()); you.redraw_experience = true; + xom_is_stimulated(255); } @@ -736,10 +738,7 @@ void drain_exp(bool announce_full) you.redraw_experience = true; if (you.experience < exp_needed(you.experience_level + 1)) - { lose_level(); - redraw_skill(you.your_name, player_title()); - } } } -- cgit v1.2.3-54-g00ecf