summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mgen_data.h
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2011-08-01 19:14:25 +0100
committerChris Campbell <chriscampbell89@gmail.com>2011-08-01 19:14:25 +0100
commiteeb42398b61714fbdaf1904c04e1185f9cd25e1a (patch)
treef080e0a150fc0bec263835d99a1c84f662d03436 /crawl-ref/source/mgen_data.h
parent34d39cef2dd4b2f2bc530c6b9034d3f4f473751d (diff)
downloadcrawl-ref-eeb42398b61714fbdaf1904c04e1185f9cd25e1a.tar.gz
crawl-ref-eeb42398b61714fbdaf1904c04e1185f9cd25e1a.zip
Use fake_abjuration for Simulacra
Like Death Channel spectral things and snakes from Sticks to Snakes, they're temporary but not actually summoned and shouldn't be abjurable.
Diffstat (limited to 'crawl-ref/source/mgen_data.h')
-rw-r--r--crawl-ref/source/mgen_data.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/mgen_data.h b/crawl-ref/source/mgen_data.h
index 5cc92aaf64..16089dcf5d 100644
--- a/crawl-ref/source/mgen_data.h
+++ b/crawl-ref/source/mgen_data.h
@@ -148,7 +148,8 @@ struct mgen_data
ASSERT(summon_type == 0 || (abj >= 1 && abj <= 6)
|| mt == MONS_BALL_LIGHTNING || mt == MONS_ORB_OF_DESTRUCTION
|| summon_type == SPELL_STICKS_TO_SNAKES
- || summon_type == SPELL_DEATH_CHANNEL);
+ || summon_type == SPELL_DEATH_CHANNEL
+ || summon_type == SPELL_SIMULACRUM);
}
bool permit_bands() const { return (flags & MG_PERMIT_BANDS); }