From f5b7079207156bdd82d713a60cf79229fe33a109 Mon Sep 17 00:00:00 2001 From: haranp Date: Wed, 4 Feb 2009 14:32:24 +0000 Subject: 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 --- crawl-ref/source/stuff.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/stuff.cc') diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc index 878633e924..b4a86f9614 100644 --- a/crawl-ref/source/stuff.cc +++ b/crawl-ref/source/stuff.cc @@ -1720,7 +1720,7 @@ int integer_sqrt(int value) int random_rod_subtype() { - return STAFF_SMITING + random2(NUM_STAVES - STAFF_SMITING); + return STAFF_FIRST_ROD + random2(NUM_STAVES - STAFF_FIRST_ROD); } int dice_def::roll() const -- cgit v1.2.3-54-g00ecf