summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-place.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-12-02 13:50:00 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-12-02 13:50:00 +1000
commit94db942d6a6bda3ae322c6af5671ccb43def2444 (patch)
tree92eb8fce3ad00f9822ca3d789d686923380a59ef /crawl-ref/source/mon-place.cc
parentb16b25683f1733cdea0214e7914218d40b3b518f (diff)
downloadcrawl-ref-94db942d6a6bda3ae322c6af5671ccb43def2444.tar.gz
crawl-ref-94db942d6a6bda3ae322c6af5671ccb43def2444.zip
Rename "firedrake" to "fire drake".
This brings it in line with all the other "drake" monsters: "swamp drake", "death drake", etc. I don't believe this change is contentious, and I hopefully haven't broken tiles build.
Diffstat (limited to 'crawl-ref/source/mon-place.cc')
-rw-r--r--crawl-ref/source/mon-place.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc
index bfe28f2f81..bbb7799365 100644
--- a/crawl-ref/source/mon-place.cc
+++ b/crawl-ref/source/mon-place.cc
@@ -2972,7 +2972,7 @@ monster_type summon_any_dragon(dragon_class_type dct)
temp_rand = random2(100);
mon = ((temp_rand > 80) ? MONS_SWAMP_DRAKE :
(temp_rand > 59) ? MONS_KOMODO_DRAGON :
- (temp_rand > 34) ? MONS_FIREDRAKE :
+ (temp_rand > 34) ? MONS_FIRE_DRAKE :
(temp_rand > 11) ? MONS_DEATH_DRAKE :
MONS_DRAGON);
break;