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.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/mapdef.cc b/crawl-ref/source/mapdef.cc
index 446583ef5c..af02c2b429 100644
--- a/crawl-ref/source/mapdef.cc
+++ b/crawl-ref/source/mapdef.cc
@@ -1201,9 +1201,9 @@ dlua_set_map::~dlua_set_map()
map_def::map_def()
: name(), tags(), place(), depths(), orient(), chance(), weight(),
weight_depth_mult(), weight_depth_div(), welcome_messages(), map(),
- mons(), items(), keyspecs(), prelude("dlprelude"), main("dlmain"),
- validate("dlvalidate"), veto("dlveto"), rock_colour(BLACK),
- floor_colour(BLACK), rock_tile(0), floor_tile(0),
+ mons(), items(), random_mons(), keyspecs(), prelude("dlprelude"),
+ main("dlmain"), validate("dlvalidate"), veto("dlveto"),
+ rock_colour(BLACK), floor_colour(BLACK), rock_tile(0), floor_tile(0),
index_only(false), cache_offset(0L)
{
init();
@@ -1227,6 +1227,7 @@ void map_def::init()
void map_def::reinit()
{
items.clear();
+ random_mons.clear();
keyspecs.clear();
level_flags.clear();
branch_flags.clear();