summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.h
diff options
context:
space:
mode:
authorpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-24 07:18:57 +0000
committerpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-24 07:18:57 +0000
commit466f7bec317bf52418535eb1f9ac997dff2b9f8e (patch)
tree0aaa3982b5201850718982181eff2ff8e9fb11ac /crawl-ref/source/item_use.h
parent5b7c011ebc58789ff4a689db367ecbad0f3ee165 (diff)
downloadcrawl-ref-466f7bec317bf52418535eb1f9ac997dff2b9f8e.tar.gz
crawl-ref-466f7bec317bf52418535eb1f9ac997dff2b9f8e.zip
- Allow 'inscribed' in fire_order. Previously it was a special case and
always sorted to the end. Now it's controllable. Default is still to the end, but not for any real reason. Updated docs and init.txt. - Replace reduncant inscription docs from crawl_options.txt with a pointer to crawl_manual.txt. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3854 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.h')
-rw-r--r--crawl-ref/source/item_use.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.h b/crawl-ref/source/item_use.h
index 997f84b741..dcc08cb42e 100644
--- a/crawl-ref/source/item_use.h
+++ b/crawl-ref/source/item_use.h
@@ -39,7 +39,8 @@ enum fire_type
FIRE_CLUB = 0x0080,
FIRE_ROCK = 0x0100,
FIRE_NET = 0x0200,
- FIRE_RETURNING = 0x0400
+ FIRE_RETURNING = 0x0400,
+ FIRE_INSCRIBED = 0x0800 // Only used for _get_fire_order
};
struct bolt;