summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mapdef.cc')
-rw-r--r--crawl-ref/source/mapdef.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index 594ce07464..26fb4f78aa 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -15,7 +15,7 @@
#include "AppHdr.h"
#include "branch.h"
#include "describe.h"
-#include "direct.h"
+#include "directn.h"
#include "dungeon.h"
#include "files.h"
#include "initfile.h"
@@ -1426,6 +1426,7 @@ std::string map_def::validate_map_def()
if (!err.empty())
return (err);
+ fixup();
resolve();
test_lua_validate(true);
@@ -1719,8 +1720,7 @@ void map_def::rotate(bool clock)
void map_def::normalise()
{
- // Minivaults are padded out with floor tiles, normal maps are
- // padded out with rock walls.
+ // Pad out lines that are shorter than max.
map.normalise(' ');
}