summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.h
diff options
context:
space:
mode:
authorpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-04 10:49:39 +0000
committerpauldubois <pauldubois@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-04 10:49:39 +0000
commite2f7f558dba2c15272436b0c6637f3a06c781072 (patch)
treeb4a1271c871db0190e448cec5ceddabc06734a46 /crawl-ref/source/item_use.h
parente52811f9c089b748627cd582419a29e67aa1a22a (diff)
downloadcrawl-ref-e2f7f558dba2c15272436b0c6637f3a06c781072.tar.gz
crawl-ref-e2f7f558dba2c15272436b0c6637f3a06c781072.zip
First half of FR 1901459
- Fire interface cycles through all items in fire order... - ...and it cycles through items with +f inscription (will add docs if we like it, remove +f if not) - Fix '(' in fire interface; it cycled the wrong way. - Did not fix: "Awkwardly throwing (Ctrl-N, Ctrl-P, i: etc)" takes up too much room. This comes up when using +f git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3521 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/item_use.h')
-rw-r--r--crawl-ref/source/item_use.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.h b/crawl-ref/source/item_use.h
index 07de89103d..502551019a 100644
--- a/crawl-ref/source/item_use.h
+++ b/crawl-ref/source/item_use.h
@@ -102,8 +102,8 @@ bool remove_ring(int slot = -1, bool announce = false);
/* ***********************************************************************
* called from: acr
* *********************************************************************** */
-int get_fire_item_index(int start_from = 0, bool forward = true,
- bool check_quiver = true);
+int get_current_fire_item();
+int get_next_fire_item(int current, int offset);
void fire_thing(int item=-1);