summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc14
1 files changed, 12 insertions, 2 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 547e985358..adeaeeddf2 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -810,8 +810,18 @@ static bool _slime_pit_unlock(bool silent)
}
}
- apply_to_all_dungeons(_remove_jiyva_altars);
- mpr("With infernal noise, the power ruling this place vanishes!");
+ apply_to_all_dungeons(_remove_jiyva_altars);
+
+ if (!silenced(you.pos()))
+ {
+ mpr("With infernal noise, the power ruling this place vanishes!",
+ MSGCH_MONSTER_ENCHANT);
+ }
+ else
+ {
+ mpr("With an infernal shudder, the power ruling this place vanishes!",
+ MSGCH_MONSTER_ENCHANT);
+ }
return (true);
}