summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 7f1191f5dd..fae20f6a8a 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -1966,7 +1966,7 @@ void yell(bool force)
if (force)
{
mprf("A %s rips itself from your throat!", shout_verb.c_str());
- noisy( noise_level, you.x_pos, you.y_pos );
+ noisy(noise_level, you.x_pos, you.y_pos);
return;
}
@@ -2003,8 +2003,8 @@ void yell(bool force)
case '!': // for players using the old keyset
case 't':
mprf(MSGCH_SOUND, "You %s for attention!", shout_verb.c_str());
+ noisy(noise_level, you.x_pos, you.y_pos);
you.turn_is_over = true;
- noisy( noise_level, you.x_pos, you.y_pos );
return;
case 'f':
@@ -2080,7 +2080,7 @@ void yell(bool force)
if (mons_targd != MHITNOT && mons_targd != MHITYOU)
mpr("Attack!");
- noisy( 10, you.x_pos, you.y_pos );
+ noisy(10, you.x_pos, you.y_pos);
} // end yell()
bool forget_inventory(bool quiet)