summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/enum.h
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-06 21:01:46 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-06 21:01:46 +0000
commite76fa04ee8cfd52c224e3ec72ff0b23796eb6029 (patch)
tree73fa8ac4235a5c609027c62b5534d9c575c3e467 /crawl-ref/source/enum.h
parent703ecf2d592818a7bbffc70bc49a943ab7f24a33 (diff)
downloadcrawl-ref-e76fa04ee8cfd52c224e3ec72ff0b23796eb6029.tar.gz
crawl-ref-e76fa04ee8cfd52c224e3ec72ff0b23796eb6029.zip
Allow creation of non-friendly god gifts. The BEH_GOD_GIFT behavior has
been removed, and the MF_GOD_GIFT flag is set directly instead. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5503 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/enum.h')
-rw-r--r--crawl-ref/source/enum.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/enum.h b/crawl-ref/source/enum.h
index 9a1ea32df8..9249559633 100644
--- a/crawl-ref/source/enum.h
+++ b/crawl-ref/source/enum.h
@@ -1868,13 +1868,13 @@ enum beh_type
BEH_PANIC, // like flee but without running away
BEH_INVESTIGATE, // investigating an ME_DISTURB
BEH_LURK, // stay still until discovered or
- // enemy closeby
+ // enemy close by
NUM_BEHAVIOURS, // max # of legal states
- BEH_CHARMED, // hostile-but-charmed; create only
+ BEH_CHARMED, // hostile-but-charmed; creation only
BEH_FRIENDLY, // used during creation only
+ BEH_GOOD_NEUTRAL, // creation only
BEH_NEUTRAL, // creation only
BEH_HOSTILE, // creation only
- BEH_GOD_GIFT, // creation only
BEH_GUARD // creation only - monster is guard
};