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.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index 710d4985d1..6b05ab4d86 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -1158,7 +1158,8 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
char minorVersion;
std::string reason;
- if (!_get_and_validate_version( levelFile, majorVersion, minorVersion, &reason ))
+ if (!_get_and_validate_version( levelFile, majorVersion, minorVersion,
+ &reason ))
{
end(-1, false, "\nLevel file is invalid. %s\n",
reason.c_str());
@@ -1265,6 +1266,7 @@ bool load( dungeon_feature_type stair_taken, load_mode_type load_mode,
#ifndef USE_TILE
viewwindow(true, false);
#endif
+ mpr("Call handle_monsters()", MSGCH_DIAGNOSTICS);
handle_monsters();
}
}