summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_debug.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-04-06 13:47:03 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-04-06 13:47:03 +0200
commit54664fffc7497ce31748fe1a9093917e0d63ef1c (patch)
treee5bc65092d537337021537449304a48ab10d01d3 /crawl-ref/source/l_debug.cc
parent5011c052c0d2764a80dd3767b5a05e9a493f2e2f (diff)
downloadcrawl-ref-54664fffc7497ce31748fe1a9093917e0d63ef1c.tar.gz
crawl-ref-54664fffc7497ce31748fe1a9093917e0d63ef1c.zip
Fix debug.check_uniques() error message.
Diffstat (limited to 'crawl-ref/source/l_debug.cc')
-rw-r--r--crawl-ref/source/l_debug.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/l_debug.cc b/crawl-ref/source/l_debug.cc
index f9f58eb287..d70e4d18b8 100644
--- a/crawl-ref/source/l_debug.cc
+++ b/crawl-ref/source/l_debug.cc
@@ -275,7 +275,7 @@ static bool _check_uniques()
mprf(MSGCH_ERROR,
"Bad unique tracking: %s placed=%d was_set=%d is_set=%d",
mons_type_name(mt, DESC_PLAIN).c_str(),
- uniques_on_level[mt], you.unique_creatures[mt]);
+ placed, was_set, is_set);
ret = false;
}
}