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.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index a9a20d204a..f8387f4775 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -1063,7 +1063,8 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
} // end of moving followers
// Load monsters in transit.
- place_transiting_monsters();
+ if (load_mode == LOAD_ENTER_LEVEL)
+ place_transiting_monsters();
redraw_all();