summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-asrt.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-26 22:27:24 -0400
committerNeil Moore <neil@s-z.org>2014-07-26 22:28:10 -0400
commit77b79c837636ff8c31a8d89070e15f4ea960873f (patch)
treecd049c90f33e40880879b66edcc893389e90989c /crawl-ref/source/dbg-asrt.cc
parentd71e18733b7ca9ff6682b197188c2e548014d647 (diff)
downloadcrawl-ref-77b79c837636ff8c31a8d89070e15f4ea960873f.tar.gz
crawl-ref-77b79c837636ff8c31a8d89070e15f4ea960873f.zip
Rename player::[hm]p_max_{perm,temp} (reaverb)
To reflect that they are adjustments, not actual mhp values. Also change one reference to use player_rotted instead.
Diffstat (limited to 'crawl-ref/source/dbg-asrt.cc')
-rw-r--r--crawl-ref/source/dbg-asrt.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dbg-asrt.cc b/crawl-ref/source/dbg-asrt.cc
index fd1ad7dcf7..8e22240202 100644
--- a/crawl-ref/source/dbg-asrt.cc
+++ b/crawl-ref/source/dbg-asrt.cc
@@ -151,10 +151,10 @@ static void _dump_player(FILE *file)
fprintf(file, "class_name: %s\n\n", you.class_name.c_str());
fprintf(file, "HP: %d/%d; mods: %d/%d\n", you.hp, you.hp_max,
- you.hp_max_temp, you.hp_max_perm);
+ you.hp_max_adj_temp, you.hp_max_adj_perm);
fprintf(file, "MP: %d/%d; mods: %d/%d\n",
you.magic_points, you.max_magic_points,
- you.mp_max_temp, you.mp_max_perm);
+ you.mp_max_adj_temp, you.mp_max_adj_perm);
fprintf(file, "Stats: %d (%d) %d (%d) %d (%d)\n",
you.strength(false), you.max_strength(),
you.intel(false), you.max_intel(),