summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-19 17:04:09 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-19 17:04:09 +0000
commitaa42374509f32e965252b5e73b2618a8efc1e327 (patch)
tree1f89aa404204102345dd4f46ef7c85301660b94c /crawl-ref/source/monstuff.cc
parent38a9a32f1df38db4bcd717d004a95f99692766b7 (diff)
downloadcrawl-ref-aa42374509f32e965252b5e73b2618a8efc1e327.tar.gz
crawl-ref-aa42374509f32e965252b5e73b2618a8efc1e327.zip
Add more Jiyva-related fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10326 c06c8d41-db1a-0410-9941-cceddc491573
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);
}