summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-11-15 19:23:22 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-11-15 20:35:49 +1000
commit047483716aeb3349cba7228270b5ca0d38c7e9ec (patch)
tree80368db03bcf1951426b0609412c0b129b99ac8f /crawl-ref/source/misc.cc
parent2c87e67ff83ad1530a3733d30277695c72ceffbb (diff)
downloadcrawl-ref-047483716aeb3349cba7228270b5ca0d38c7e9ec.tar.gz
crawl-ref-047483716aeb3349cba7228270b5ca0d38c7e9ec.zip
Don't penalise Xom amusement for Minotaurs leaving labyrinths.
As they can no longer map the labyrinth, this penalty doesn't make that much sense now.
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 92bc01db73..ad256dbec2 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -2488,11 +2488,9 @@ void down_stairs( int old_level, dungeon_feature_type force_stair,
case LEVEL_LABYRINTH:
// Finding the way out of a labyrinth interests Xom,
- // but less so for Minotaurs.
- if (you.species == SP_MINOTAUR)
- xom_is_stimulated(49);
- else
- xom_is_stimulated(98);
+ // but less so for Minotaurs. (though not now, as they cannot
+ // map the labyrinth any more {due})
+ xom_is_stimulated(98);
break;
case LEVEL_ABYSS: