summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mtransit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mtransit.cc')
-rw-r--r--crawl-ref/source/mtransit.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mtransit.cc b/crawl-ref/source/mtransit.cc
index d76b3e13c3..51ca767e98 100644
--- a/crawl-ref/source/mtransit.cc
+++ b/crawl-ref/source/mtransit.cc
@@ -204,7 +204,7 @@ void place_transiting_items()
for (item = ilist.begin(); item != ilist.end(); item++)
{
- coord_def pos(item->x, item->y);
+ coord_def pos = item->pos;
if (!in_bounds(pos))
{
@@ -284,7 +284,7 @@ bool follower::place(bool near_player)
mprf(MSGCH_DIAGNOSTICS, "Placed follower: %s",
m.name(DESC_PLAIN).c_str());
#endif
- m.target_x = m.target_y = 0;
+ m.target.reset();
m.flags &= ~MF_TAKING_STAIRS;
m.flags |= MF_JUST_SUMMONED;
@@ -315,7 +315,7 @@ void follower::restore_mons_items(monsters &m)
item_def &it = mitm[islot];
it = items[i];
- it.x = it.y = 0;
+ it.pos.reset();
it.link = NON_ITEM;
}
}