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, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 5788486b63..ebaa18142c 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -4119,9 +4119,9 @@ void set_hp(int new_amount, bool max_too)
if (you.hp > you.hp_max)
you.hp = you.hp_max;
- // take_note(Note(NOTE_HP_CHANGE, you.hp, you.hp_max));
if ( max_too )
- take_note(Note(NOTE_MAXHP_CHANGE, you.hp_max));
+ take_note(Note(NOTE_MAXHP_CHANGE, you.hp_max));
+
// must remain outside conditional, given code usage {dlb}
you.redraw_hit_points = 1;