summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-behv.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/mon-behv.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/mon-behv.h')
-rw-r--r--crawl-ref/source/mon-behv.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mon-behv.h b/crawl-ref/source/mon-behv.h
index af77f3dd4b..6e0d671ef2 100644
--- a/crawl-ref/source/mon-behv.h
+++ b/crawl-ref/source/mon-behv.h
@@ -37,14 +37,14 @@ void set_random_target(monsters* mon);
void make_mons_leave_level(monsters *mon);
-bool monster_can_hit_monster(monsters *monster, const monsters *targ);
+bool monster_can_hit_monster(monsters* mons, const monsters *targ);
-bool mons_avoids_cloud(const monsters *monster, cloud_type cl_type,
+bool mons_avoids_cloud(const monsters* mons, cloud_type cl_type,
bool placement = false);
// Like the above, but allow a monster to move from one damaging cloud
// to another.
-bool mons_avoids_cloud(const monsters *monster, int cloud_num,
+bool mons_avoids_cloud(const monsters* mons, int cloud_num,
cloud_type *cl_type = NULL, bool placement = false);
#endif