summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mstuff2.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 02:19:28 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-10 02:19:28 +0000
commitd3e28631b13c698c31fdb5896df8e8e66a3b944a (patch)
tree83170cb83716a9dacd4c21ea9310357c34e4bfce /crawl-ref/source/mstuff2.cc
parent879f9f1789cf5fe144693e50179ff2087d19498f (diff)
downloadcrawl-ref-d3e28631b13c698c31fdb5896df8e8e66a3b944a.tar.gz
crawl-ref-d3e28631b13c698c31fdb5896df8e8e66a3b944a.zip
Let the monster version of "Summon Wraiths" summon shadow wraiths again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5686 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/mstuff2.cc')
-rw-r--r--crawl-ref/source/mstuff2.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index f0dfdc4845..b26fafb46b 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -447,7 +447,8 @@ static monster_type _pick_random_wraith()
{
static monster_type wraiths[] =
{
- MONS_WRAITH, MONS_FREEZING_WRAITH, MONS_SPECTRAL_WARRIOR
+ MONS_WRAITH, MONS_FREEZING_WRAITH, MONS_SPECTRAL_WARRIOR,
+ MONS_SHADOW_WRAITH
};
return wraiths[ random2(sizeof(wraiths) / sizeof(*wraiths)) ];