summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg.cc
diff options
context:
space:
mode:
authorRobert Burnham <burnhamrobertp@gmail.com>2010-03-31 03:14:35 -0500
committerRobert Vollmert <rvollmert@gmx.net>2010-03-31 14:26:17 +0200
commite0907dbb4ebeae8ba4bb52352ce6efdfebc95d9a (patch)
tree15869274383f750eb241efed431f26aa928b9c24 /crawl-ref/source/tilereg.cc
parent20e65c29c685eea90baf75eb1b17f0f72426fac7 (diff)
downloadcrawl-ref-e0907dbb4ebeae8ba4bb52352ce6efdfebc95d9a.tar.gz
crawl-ref-e0907dbb4ebeae8ba4bb52352ce6efdfebc95d9a.zip
Demonspawn Additions
Implements new demonspawn mutations, removes old scales / mutations which are deprecated. Adds some limited functionality which was necessary for new mutations which might prove useful in the future. Most notably, the monster flag forcing creature inter-level travel as the player moves up / down in the dungeon. Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/tilereg.cc')
-rw-r--r--crawl-ref/source/tilereg.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tilereg.cc b/crawl-ref/source/tilereg.cc
index 174a2925a6..177aada158 100644
--- a/crawl-ref/source/tilereg.cc
+++ b/crawl-ref/source/tilereg.cc
@@ -829,7 +829,7 @@ static void _fill_doll_equipment(dolls_data &result)
const int item = you.equip[EQ_BOOTS];
if (item != -1)
result.parts[TILEP_PART_BOOTS] = tilep_equ_boots(you.inv[item]);
- else if (player_mutation_level(MUT_HOOVES))
+ else if (player_mutation_level(MUT_HOOVES) >= 3)
result.parts[TILEP_PART_BOOTS] = TILEP_BOOTS_HOOVES;
else
result.parts[TILEP_PART_BOOTS] = 0;