summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_debug.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-08-02 13:40:30 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-08-02 19:13:41 +0200
commit2d9f389c3b7ea4276c17eb2b6a720310ede6190b (patch)
treef88260be86cac8383d7b3a40903d9eb377f549f7 /crawl-ref/source/l_debug.cc
parenta704a69213f487d6b2471b83ffbd14dab82adfaf (diff)
downloadcrawl-ref-2d9f389c3b7ea4276c17eb2b6a720310ede6190b.tar.gz
crawl-ref-2d9f389c3b7ea4276c17eb2b6a720310ede6190b.zip
Ignore tracking SoH existence in --test.
We could properly store whether any of Serpents has been created, but that's already done a different way.
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 c764727cac..657d23d756 100644
--- a/crawl-ref/source/l_debug.cc
+++ b/crawl-ref/source/l_debug.cc
@@ -287,7 +287,7 @@ static bool _check_uniques()
for (monster_type mt = MONS_0; mt < NUM_MONSTERS; ++mt)
{
- if (!mons_is_unique(mt))
+ if (!mons_is_unique(mt) || mons_species(mt) == MONS_SERPENT_OF_HELL)
continue;
bool was_set = saved_uniques[mt];
bool is_set = you.unique_creatures[mt];