summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 07:08:04 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 07:08:04 +0000
commitae3f3137e8bf48b0276484074f6a03c9dc7497af (patch)
tree3df66a545a40ac0ac25a05c36eb3501ce012773d /crawl-ref/source/monplace.h
parentb9005fdff781a76600ceff611d01dd9d649f748d (diff)
downloadcrawl-ref-ae3f3137e8bf48b0276484074f6a03c9dc7497af.tar.gz
crawl-ref-ae3f3137e8bf48b0276484074f6a03c9dc7497af.zip
Use the proper flag type to indicate god gifts (oops).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5645 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monplace.h')
-rw-r--r--crawl-ref/source/monplace.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/crawl-ref/source/monplace.h b/crawl-ref/source/monplace.h
index 0d212f1ea9..5d1dd88d58 100644
--- a/crawl-ref/source/monplace.h
+++ b/crawl-ref/source/monplace.h
@@ -101,11 +101,12 @@ enum proximity_type // proximity to player to create monster
enum mgen_flag_type
{
- MG_PERMIT_BANDS = 0x01,
- MG_FORCE_PLACE = 0x02,
- MG_FORCE_BEH = 0x04,
- MG_PLAYER_MADE = 0x08,
- MG_PATROLLING = 0x10
+ MG_GOD_GIFT = 0x01,
+ MG_PERMIT_BANDS = 0x02,
+ MG_FORCE_PLACE = 0x04,
+ MG_FORCE_BEH = 0x08,
+ MG_PLAYER_MADE = 0x10,
+ MG_PATROLLING = 0x20
};
// A structure with all the data needed to whip up a new monster.