summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-11-13 01:12:37 -0500
committerCharles Otto <ottochar@gmail.com>2009-11-13 01:12:37 -0500
commitca7c789cfc9b71a331e06891c084e254c749d9be (patch)
tree2ad4f2de1e82c0179a715563095f04a9911c0e7c /crawl-ref/source/view.cc
parente7d888537c4d178a98e2ef1727a84d5132655d6c (diff)
downloadcrawl-ref-ca7c789cfc9b71a331e06891c084e254c749d9be.tar.gz
crawl-ref-ca7c789cfc9b71a331e06891c084e254c749d9be.zip
Fix a couple compile errors caused by the merge.
Diffstat (limited to 'crawl-ref/source/view.cc')
-rw-r--r--crawl-ref/source/view.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 648141b7a3..7e64aeaf30 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -133,13 +133,13 @@ void monster_grid_updates()
handle_monster_shouts(*mi);
}
- fedhas_neutralise(monster);
+ fedhas_neutralise(*mi);
if (!mi->visible_to(&you))
continue;
- good_god_follower_attitude_change(monster);
- beogh_follower_convert(monster);
- slime_convert(monster);
+ good_god_follower_attitude_change(*mi);
+ beogh_follower_convert(*mi);
+ slime_convert(*mi);
// XXX: Probably quite hackish. Allows for monsters going berserk when
// they see the player. Currently only used for Duvessa, see the
// function _elven_twin_dies in mon-stuff.cc.