From a117fb1baf5f81a56014a174f0400622cdf2ab5d Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 24 Jun 2008 14:06:28 +0000 Subject: Modify quiver to only quiver ammunition explicitly chosen by the player (via (,) or i, or by the new quivering command). Ammo that just happens to come next in the fire order is not quivered anymore even if you continue firing. Add a new quiver command on Q, and while I was at it, restrict the items offered when firing (fi) or quivering to actual throwables. (This was a long outstanding FR.) I think that's it... git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6112 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/invent.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'crawl-ref/source/invent.h') diff --git a/crawl-ref/source/invent.h b/crawl-ref/source/invent.h index f11916107e..8ff0a75e35 100644 --- a/crawl-ref/source/invent.h +++ b/crawl-ref/source/invent.h @@ -22,15 +22,16 @@ enum object_selector { - OSEL_ANY = -1, - OSEL_WIELD = -2, - OSEL_UNIDENT = -3, - OSEL_EQUIP = -4, - OSEL_MEMORISE = -5, - OSEL_RECHARGE = -6, - OSEL_ENCH_ARM = -7, - OSEL_VAMP_EAT = -8, - OSEL_DRAW_DECK = -9 + OSEL_ANY = -1, + OSEL_WIELD = -2, + OSEL_UNIDENT = -3, + OSEL_EQUIP = -4, + OSEL_MEMORISE = -5, + OSEL_RECHARGE = -6, + OSEL_ENCH_ARM = -7, + OSEL_VAMP_EAT = -8, + OSEL_DRAW_DECK = -9, + OSEL_THROWABLE = -10 }; #define PROMPT_ABORT -1 -- cgit v1.2.3-54-g00ecf