summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.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/tilepick.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/tilepick.cc')
-rw-r--r--crawl-ref/source/tilepick.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc
index 0d40354652..7fe6cda6cb 100644
--- a/crawl-ref/source/tilepick.cc
+++ b/crawl-ref/source/tilepick.cc
@@ -261,8 +261,8 @@ int tileidx_monster_base(const monsters *mon, bool detected)
// drakes (also 'l', but dragon type)
case MONS_SWAMP_DRAKE:
return TILEP_MONS_SWAMP_DRAKE;
- case MONS_FIREDRAKE:
- return TILEP_MONS_FIREDRAKE;
+ case MONS_FIRE_DRAKE:
+ return TILEP_MONS_FIRE_DRAKE;
case MONS_LINDWURM:
return TILEP_MONS_LINDWURM;
case MONS_DEATH_DRAKE:
@@ -1674,8 +1674,8 @@ static int _tileidx_corpse(const item_def &item)
// drakes (also 'l')
case MONS_SWAMP_DRAKE:
return TILE_CORPSE_SWAMP_DRAKE;
- case MONS_FIREDRAKE:
- return TILE_CORPSE_FIREDRAKE;
+ case MONS_FIRE_DRAKE:
+ return TILE_CORPSE_FIRE_DRAKE;
case MONS_LINDWURM:
return TILE_CORPSE_LINDWURM;
case MONS_DEATH_DRAKE: