summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mapdef.h
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-12-10 10:36:28 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-12-10 11:00:54 +1000
commitc602df19e39a4092f2307f414c7ea7d6a7fe3af1 (patch)
tree76859a53332734d3f25fdcc2c17947fd6134d7d1 /crawl-ref/source/mapdef.h
parent9f4bc8c473b1da88c6f322c70dccd0f60d3b6706 (diff)
downloadcrawl-ref-c602df19e39a4092f2307f414c7ea7d6a7fe3af1.tar.gz
crawl-ref-c602df19e39a4092f2307f414c7ea7d6a7fe3af1.zip
Minor tweaks to TILE: specifier.
Diffstat (limited to 'crawl-ref/source/mapdef.h')
-rw-r--r--crawl-ref/source/mapdef.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/mapdef.h b/crawl-ref/source/mapdef.h
index d24ad4a2da..3420b0d1b2 100644
--- a/crawl-ref/source/mapdef.h
+++ b/crawl-ref/source/mapdef.h
@@ -560,6 +560,8 @@ class mons_spec
monster_spells spells;
unsigned long extra_monster_flags;
+ CrawlHashTable props;
+
mons_spec(int id = RANDOM_MONSTER,
monster_type base = MONS_NO_MONSTER,
int num = 0,
@@ -570,7 +572,7 @@ class mons_spec
generate_awake(awaken), patrolling(false), band(false),
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)
+ spells(), extra_monster_flags(0L), props()
{
}
};