From a14e48e33b5e1eef0503fa426ff31e0c83628d73 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Fri, 13 Jul 2007 10:57:10 +0000 Subject: Lost monsters could be placed on save load, fixed (Haran). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1853 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/files.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(); -- cgit v1.2.3-54-g00ecf