summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index 8376ce6eae..32b75a209b 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -758,7 +758,7 @@ static void place_player_on_stair(branch_type old_branch,
const coord_def where_to_go =
dgn_find_nearby_stair(static_cast<dungeon_feature_type>(stair_taken),
- find_first);
+ you.pos(), find_first);
you.moveto(where_to_go);
}
@@ -1037,7 +1037,10 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
// Load monsters in transit.
if (load_mode == LOAD_ENTER_LEVEL)
+ {
place_transiting_monsters();
+ place_transiting_items();
+ }
redraw_all();