summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-asrt.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-26 22:15:34 -0400
committerNeil Moore <neil@s-z.org>2014-07-26 22:15:34 -0400
commitd71e18733b7ca9ff6682b197188c2e548014d647 (patch)
treeb1da9c273df20c07d93b74eada821ce7145bbf9d /crawl-ref/source/dbg-asrt.cc
parentbb7bf68723428bf22384e1f1985b39d117df9fec (diff)
downloadcrawl-ref-d71e18733b7ca9ff6682b197188c2e548014d647.tar.gz
crawl-ref-d71e18733b7ca9ff6682b197188c2e548014d647.zip
Fix temporary MP modifier in debug dumps.
Diffstat (limited to 'crawl-ref/source/dbg-asrt.cc')
-rw-r--r--crawl-ref/source/dbg-asrt.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/dbg-asrt.cc b/crawl-ref/source/dbg-asrt.cc
index 2e70f1e997..fd1ad7dcf7 100644
--- a/crawl-ref/source/dbg-asrt.cc
+++ b/crawl-ref/source/dbg-asrt.cc
@@ -154,7 +154,7 @@ static void _dump_player(FILE *file)
you.hp_max_temp, you.hp_max_perm);
fprintf(file, "MP: %d/%d; mods: %d/%d\n",
you.magic_points, you.max_magic_points,
- you.hp_max_temp, you.mp_max_perm);
+ you.mp_max_temp, you.mp_max_perm);
fprintf(file, "Stats: %d (%d) %d (%d) %d (%d)\n",
you.strength(false), you.max_strength(),
you.intel(false), you.max_intel(),