summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mstuff2.cc3
-rw-r--r--crawl-ref/source/spells2.cc7
2 files changed, 4 insertions, 6 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 1a964e44a5..37f0973796 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -449,8 +449,7 @@ static monster_type _pick_random_wraith()
{
static monster_type wraiths[] =
{
- MONS_WRAITH, MONS_FREEZING_WRAITH, MONS_SPECTRAL_WARRIOR,
- MONS_SHADOW_WRAITH
+ MONS_WRAITH, MONS_FREEZING_WRAITH, MONS_SPECTRAL_WARRIOR
};
return wraiths[ random2(sizeof(wraiths) / sizeof(*wraiths)) ];
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 67e11297c6..fdb1a68457 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -1774,10 +1774,9 @@ void summon_undead(int pow)
{
temp_rand = random2(25);
- thing_called = ((temp_rand > 8) ? MONS_WRAITH : // 64%
- (temp_rand > 4) ? MONS_FREEZING_WRAITH : // 16%
- (temp_rand > 1) ? MONS_SPECTRAL_WARRIOR // 12%
- : MONS_SHADOW_WRAITH); // 8%
+ thing_called = ((temp_rand > 8) ? MONS_WRAITH : // 64%
+ (temp_rand > 3) ? MONS_FREEZING_WRAITH // 20%
+ : MONS_SPECTRAL_WARRIOR); // 16%
bool friendly = (random2(pow) > 5);