summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shout.h
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-09-05 08:40:26 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-09-05 12:56:08 +0200
commita49e4492fc269271c7809d2caeb1e4d80bb0b7bf (patch)
tree66876acf63363e5f2bc3cddb3493d5ae01a34c1d /crawl-ref/source/shout.h
parent0dddc8ccfbd7d015092f761c69285a0fc17f4de5 (diff)
downloadcrawl-ref-a49e4492fc269271c7809d2caeb1e4d80bb0b7bf.tar.gz
crawl-ref-a49e4492fc269271c7809d2caeb1e4d80bb0b7bf.zip
Rename variables named "monster" to "mons" or similar.
Diffstat (limited to 'crawl-ref/source/shout.h')
-rw-r--r--crawl-ref/source/shout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/shout.h b/crawl-ref/source/shout.h
index c3bc6adccc..20a5e68fdf 100644
--- a/crawl-ref/source/shout.h
+++ b/crawl-ref/source/shout.h
@@ -6,8 +6,8 @@ bool noisy(int loudness, const coord_def& where, int who,
bool noisy(int loudness, const coord_def& where, const char *msg = NULL,
int who = -1, bool mermaid = false);
void blood_smell( int strength, const coord_def& where);
-void handle_monster_shouts(monsters* monster, bool force = false);
-void force_monster_shout(monsters* monster);
-bool check_awaken(monsters* monster);
+void handle_monster_shouts(monsters* mons, bool force = false);
+void force_monster_shout(monsters* mons);
+bool check_awaken(monsters* mons);
#endif