summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index a8436b306d..328a02357e 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -871,7 +871,7 @@ static void _mummy_curse(monsters* monster, killer_type killer, int index)
else
{
// Mummies committing suicide don't cause a death curse.
- if (index == static_cast<int>(monster_index(monster)))
+ if (index == monster->mindex())
return;
target = &menv[index];
}
@@ -4220,7 +4220,7 @@ static void _handle_behaviour(monsters *mon)
if (mon->behaviour == BEH_FLEE)
{
// Monster is safe, so stay put.
- mon->target.set(mon->pos().x, mon->pos().y);
+ mon->target = mon->pos();
mon->foe = MHITNOT;
}
}