summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acquire.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-29 02:40:33 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-29 03:15:29 -0400
commit9bbef2017baef8a608198b92a8633c8f1f241148 (patch)
tree686010bec79e3950b6db49dbdc1fa1647b7e27cf /crawl-ref/source/acquire.cc
parentbb107bb37675f7058088ab92ea94e3e1fd83c13f (diff)
downloadcrawl-ref-9bbef2017baef8a608198b92a8633c8f1f241148.tar.gz
crawl-ref-9bbef2017baef8a608198b92a8633c8f1f241148.zip
Remove AQ_CARD_GENIE on TAG_MAJOR_VERSION bump
Now that the Genie card is gone it has no reason to exist.
Diffstat (limited to 'crawl-ref/source/acquire.cc')
-rw-r--r--crawl-ref/source/acquire.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/acquire.cc b/crawl-ref/source/acquire.cc
index 225410d785..91255bb92b 100644
--- a/crawl-ref/source/acquire.cc
+++ b/crawl-ref/source/acquire.cc
@@ -966,11 +966,8 @@ static bool _do_book_acquirement(item_def &book, int agent)
// Acquired randart books have a chance of being named after the player.
string owner = "";
- if (agent == AQ_SCROLL && one_chance_in(12)
- || agent == AQ_CARD_GENIE && one_chance_in(6))
- {
+ if (agent == AQ_SCROLL && one_chance_in(12))
owner = you.your_name;
- }
switch (choice)
{