summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-04 14:32:24 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-04 14:32:24 +0000
commitf5b7079207156bdd82d713a60cf79229fe33a109 (patch)
tree667500f1eb3c6a5e67eee0a2d997105d934af173 /crawl-ref/source/command.cc
parent5be9c59587164c09a41da05a8de9e0d3588412ab (diff)
downloadcrawl-ref-f5b7079207156bdd82d713a60cf79229fe33a109.tar.gz
crawl-ref-f5b7079207156bdd82d713a60cf79229fe33a109.zip
Clean up acquirement subtype determination code. (Another goto bites the dust.)
Be a bit more generous regarding books for Evoc and Invoc types. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8890 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index b5fcc0fa4a..95159c5c26 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -1213,7 +1213,7 @@ static bool _append_books(std::string &desc, item_def &item, std::string key)
item.base_type = OBJ_STAVES;
int book;
- for (int i = STAFF_SMITING; i < NUM_STAVES; i++)
+ for (int i = STAFF_FIRST_ROD; i < NUM_STAVES; i++)
{
item.sub_type = i;
book = item.book_number();