summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mstuff2.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 5cf2a940b6..a16b27cbcb 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -536,9 +536,7 @@ void mons_cast(monsters *monster, bolt &pbolt, spell_type spell_cast,
void mons_cast_noise(monsters *monster, bolt &pbolt, spell_type spell_cast)
{
- // XXX: Revert to the 0.4 behaviour of monster spells not making any
- // noise, since the new sound system is incomplete.
- bool force_silent = true;
+ bool force_silent = false;
spell_type real_spell = spell_cast;
@@ -713,6 +711,10 @@ void mons_cast_noise(monsters *monster, bolt &pbolt, spell_type spell_cast)
break;
}
+ // XXX: Revert to the 0.4 behaviour of monster spells not making any
+ // noise, since the new sound system is incomplete.
+ noise = 0;
+
if (msg.empty())
{
if (silent)