summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-05 21:48:43 +0300
committerRobert Vollmert <rvollmert@gmx.net>2009-11-05 20:54:38 +0100
commit823bd7c3cb7d42efad29de3d98d3def28aa4c63f (patch)
treee9c572d13b626475a97fbc8aba81cabeb50bcd48 /crawl-ref/source/effects.cc
parent5cae6a4d1a66d74223cf4b6001b234d24be329d9 (diff)
downloadcrawl-ref-823bd7c3cb7d42efad29de3d98d3def28aa4c63f.tar.gz
crawl-ref-823bd7c3cb7d42efad29de3d98d3def28aa4c63f.zip
Replace mons_is_caught with monsters::caught.
Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 1ba8d89aa7..3ea777daa9 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -4218,7 +4218,7 @@ void update_level(double elapsedTime)
}
// Handle nets specially to remove the trapping property of the net.
- if (mons_is_caught(mon))
+ if (mon->caught())
mon->del_ench(ENCH_HELD, true);
_catchup_monster_moves(mon, turns);