summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mapdef.h')
-rw-r--r--crawl-ref/source/mapdef.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/mapdef.h b/crawl-ref/source/mapdef.h
index a04a092307..f85ae22103 100644
--- a/crawl-ref/source/mapdef.h
+++ b/crawl-ref/source/mapdef.h
@@ -542,9 +542,12 @@ class mons_spec
int colour;
int hd;
int hp;
+ int abjuration_duration;
+ int summon_type;
item_list items;
std::string monname;
+ std::string non_actor_summoner;
bool explicit_spells;
monster_spells spells;
@@ -558,8 +561,9 @@ class mons_spec
: mid(id), place(), monbase(base), attitude(ATT_HOSTILE), number(num),
quantity(1), genweight(gw), mlevel(ml), fix_mons(_fixmons),
generate_awake(awaken), patrolling(false), band(false),
- colour(BLACK), hd(0), hp(0), items(), monname(""),
- explicit_spells(false), spells(), extra_monster_flags(0L)
+ colour(BLACK), hd(0), hp(0), abjuration_duration(0), summon_type(0),
+ items(), monname(""), non_actor_summoner(""), explicit_spells(false),
+ spells(), extra_monster_flags(0L)
{
}
};