summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-monench.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2010-09-06 06:33:57 +0200
committerRobert Vollmert <rvollmert@gmx.net>2010-09-05 12:56:13 +0200
commit31adfd48395f3c74daad1f72b874f497020481a7 (patch)
treed7733b7e157fa13c4af485ed7c51b3f97c6b1a72 /crawl-ref/source/spl-monench.cc
parenta49e4492fc269271c7809d2caeb1e4d80bb0b7bf (diff)
downloadcrawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.tar.gz
crawl-ref-31adfd48395f3c74daad1f72b874f497020481a7.zip
Rename class "monsters" to "monster".
Diffstat (limited to 'crawl-ref/source/spl-monench.cc')
-rw-r--r--crawl-ref/source/spl-monench.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/spl-monench.cc b/crawl-ref/source/spl-monench.cc
index ff6337d05c..0b14e3008c 100644
--- a/crawl-ref/source/spl-monench.cc
+++ b/crawl-ref/source/spl-monench.cc
@@ -24,7 +24,7 @@
static int _sleep_monsters(coord_def where, int pow, int, actor *)
{
- monsters* mons = monster_at(where);
+ monster* mons = monster_at(where);
if (!mons)
return (0);
@@ -75,7 +75,7 @@ static bool _is_domesticated_animal(int type)
static int _tame_beast_monsters(coord_def where, int pow, int, actor *)
{
- monsters* mons = monster_at(where);
+ monster* mons = monster_at(where);
if (mons == NULL)
return 0;
@@ -116,7 +116,7 @@ bool backlight_monsters(coord_def where, int pow, int garbage)
UNUSED(pow);
UNUSED(garbage);
- monsters* mons = monster_at(where);
+ monster* mons = monster_at(where);
if (mons == NULL)
return (false);
@@ -154,7 +154,7 @@ bool backlight_monsters(coord_def where, int pow, int garbage)
return (true);
}
-bool do_slow_monster(monsters* mon, kill_category whose_kill)
+bool do_slow_monster(monster* mon, kill_category whose_kill)
{
// Try to remove haste, if monster is hasted.
if (mon->del_ench(ENCH_HASTE, true))