From c602df19e39a4092f2307f414c7ea7d6a7fe3af1 Mon Sep 17 00:00:00 2001 From: Jude Brown Date: Thu, 10 Dec 2009 10:36:28 +1000 Subject: Minor tweaks to TILE: specifier. --- crawl-ref/source/mgen_data.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/mgen_data.h') diff --git a/crawl-ref/source/mgen_data.h b/crawl-ref/source/mgen_data.h index 360ebf3f54..6934100ede 100644 --- a/crawl-ref/source/mgen_data.h +++ b/crawl-ref/source/mgen_data.h @@ -101,6 +101,9 @@ struct mgen_data // Fiend ... summoned by the effects of Hell. std::string non_actor_summoner; + // This can eventually be used to store relevant information. + CrawlHashTable props; + mgen_data(monster_type mt = RANDOM_MONSTER, beh_type beh = BEH_HOSTILE, actor* sner = 0, @@ -126,7 +129,7 @@ struct mgen_data flags(monflags), god(which_god), number(monnumber), colour(moncolour), power(monpower), proximity(prox), level_type(ltype), map_mask(0), hd(mhd), hp(mhp), extra_flags(mflags), mname(monname), - non_actor_summoner(nas) + non_actor_summoner(nas), props() { ASSERT(summon_type == 0 || (abj >= 1 && abj <= 6) || mt == MONS_BALL_LIGHTNING); -- cgit v1.2.3-54-g00ecf