summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index d14aa7ebd3..268f47cac2 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -2655,10 +2655,11 @@ void handle_time( long time_delta )
// jmf: moved huge thing to religion.cc
handle_god_time();
- // If the player has the lost mutation forget portions of the map
- if (you.mutation[MUT_LOST] && !wearing_amulet(AMU_CLARITY) &&
- (random2(100) <= you.mutation[MUT_LOST] * 5) )
- forget_map(5 + random2(you.mutation[MUT_LOST] * 10));
+ if (you.mutation[MUT_SCREAM]
+ && (random2(100) <= you.mutation[MUT_SCREAM] * 5) )
+ {
+ yell(true);
+ }
// Update all of the corpses and food chunks on the floor
update_corpses(time_delta);