summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ng-wanderer.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-02-25 11:19:57 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-02-25 15:15:58 +0100
commit3abb74966cc1c71ea89a71e25d7f739fa2588497 (patch)
tree73dd03fd11e6196cfa600f37c6bffe38a4b75529 /crawl-ref/source/ng-wanderer.cc
parentbd77c08481bf542c9a5d4c0d51704218445f32bc (diff)
downloadcrawl-ref-3abb74966cc1c71ea89a71e25d7f739fa2588497.tar.gz
crawl-ref-3abb74966cc1c71ea89a71e25d7f739fa2588497.zip
Drop _I from BOOK_MINOR_MAGIC_I, as other variants are gone.
Diffstat (limited to 'crawl-ref/source/ng-wanderer.cc')
-rw-r--r--crawl-ref/source/ng-wanderer.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/ng-wanderer.cc b/crawl-ref/source/ng-wanderer.cc
index 9a12f44634..a6a0d5e262 100644
--- a/crawl-ref/source/ng-wanderer.cc
+++ b/crawl-ref/source/ng-wanderer.cc
@@ -290,18 +290,18 @@ static skill_type _weighted_skill_roll()
static void _give_wanderer_book(skill_type skill, int & slot)
{
- int book_type = BOOK_MINOR_MAGIC_I;
+ int book_type = BOOK_MINOR_MAGIC;
switch((int)skill)
{
case SK_SPELLCASTING:
- book_type = BOOK_MINOR_MAGIC_I;
+ book_type = BOOK_MINOR_MAGIC;
break;
case SK_CONJURATIONS:
switch (random2(4))
{
case 0:
- book_type = BOOK_MINOR_MAGIC_I;
+ book_type = BOOK_MINOR_MAGIC;
break;
case 1:
book_type = BOOK_CONJURATIONS_I;
@@ -319,7 +319,7 @@ static void _give_wanderer_book(skill_type skill, int & slot)
switch (random2(2))
{
case 0:
- book_type = BOOK_MINOR_MAGIC_I;
+ book_type = BOOK_MINOR_MAGIC;
break;
case 1:
book_type = BOOK_CALLINGS;