From 28364e961a56dcc73cf7d15562d253d392745642 Mon Sep 17 00:00:00 2001 From: dolorous Date: Wed, 28 May 2008 21:35:27 +0000 Subject: Add more noise-related cleanups. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5318 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/effects.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/effects.cc') 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) -- cgit v1.2.3-54-g00ecf