summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/mstuff2.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 81e0365d1d..621011645d 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -2189,7 +2189,7 @@ bool orc_battle_cry(monsters *chief)
if (ench.ench == ENCH_NONE || ench.degree < level)
{
const int dur =
- random_range(5, 10) * speed_to_duration(mons->speed);
+ random_range(9, 15) * speed_to_duration(mons->speed);
if (ench.ench != ENCH_NONE)
{
@@ -2213,7 +2213,7 @@ bool orc_battle_cry(monsters *chief)
{
if (you.can_see(chief) && player_can_hear(chief->x, chief->y))
{
- mprf("%s roars a battle-cry!",
+ mprf(MSGCH_SOUND, "%s roars a battle-cry!",
chief->name(DESC_CAP_THE).c_str());
noisy(15, chief->x, chief->y);
}