summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mon-abil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-abil.cc b/crawl-ref/source/mon-abil.cc
index 29b7d169e6..e1fa72f6a5 100644
--- a/crawl-ref/source/mon-abil.cc
+++ b/crawl-ref/source/mon-abil.cc
@@ -647,7 +647,7 @@ static bool _orc_battle_cry(monsters *chief)
}
// The yell happens whether you happen to see it or not.
- noisy(15, chief->pos(), chief->mindex());
+ noisy(LOS_RADIUS, chief->pos(), chief->mindex());
// Disabling detailed frenzy announcement because it's so spammy.
const msg_channel_type channel =
@@ -1203,7 +1203,7 @@ bool mon_special_ability(monsters *monster, bolt & beem)
if (one_chance_in(5)
|| monster->foe == MHITYOU && !already_mesmerised && coinflip())
{
- noisy(12, monster->pos(), monster->mindex(), true);
+ noisy(LOS_RADIUS, monster->pos(), monster->mindex(), true);
bool did_resist = false;
if (you.can_see(monster))