summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-place.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-04-15 15:53:26 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-04-24 21:32:20 -0600
commit6cf688689bb1239c770369ed0ad4d2e7f9c95282 (patch)
tree4b48299bbb67295a75a7cb6df956b99719ef076a /crawl-ref/source/mon-place.cc
parent216500d13dad04c00521f84045fd6d63ad1a2d55 (diff)
downloadcrawl-ref-6cf688689bb1239c770369ed0ad4d2e7f9c95282.tar.gz
crawl-ref-6cf688689bb1239c770369ed0ad4d2e7f9c95282.zip
De-dwarfify death knights.
Complete with a bad tile, which could/should be replaced ASAP.
Diffstat (limited to 'crawl-ref/source/mon-place.cc')
-rw-r--r--crawl-ref/source/mon-place.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc
index aa44679cd2..8be6716852 100644
--- a/crawl-ref/source/mon-place.cc
+++ b/crawl-ref/source/mon-place.cc
@@ -1352,9 +1352,9 @@ static monster* _place_monster_aux(const mgen_data &mg, const monster *leader,
// Berserkers belong to Trog.
if (mg.cls == MONS_SPRIGGAN_BERSERKER)
mon->god = GOD_TROG;
- // Profane servitors and deep dwarf death knights belong to Yredelemnul.
+ // Profane servitors and death knights belong to Yredelemnul.
else if (mg.cls == MONS_PROFANE_SERVITOR
- || mg.cls == MONS_DEEP_DWARF_DEATH_KNIGHT)
+ || mg.cls == MONS_DEATH_KNIGHT)
{
mon->god = GOD_YREDELEMNUL;
}
@@ -2197,7 +2197,7 @@ static band_type _choose_band(monster_type mon_type, int &band_size,
band = BAND_GNOLLS;
band_size = 3 + random2(4);
break;
- case MONS_DEEP_DWARF_DEATH_KNIGHT:
+ case MONS_DEATH_KNIGHT:
if (x_chance_in_y(2, 3))
{
natural_leader = true;