summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-reacts.cc
diff options
context:
space:
mode:
authorKeanan Smith <keanan.smith@gmail.com>2014-05-01 23:50:33 -0600
committerreaverb <reaverb.Crawl@gmail.com>2014-05-08 21:58:52 -0400
commit01e124b8e5cdbb35e613779fd8df9b72cb3e9ed6 (patch)
treed17ae7c0cb952f447ac4a0760195f6a3a116f7e9 /crawl-ref/source/player-reacts.cc
parent8acb02a7b433ec251054a3376ed15f49fd8fc9b1 (diff)
downloadcrawl-ref-01e124b8e5cdbb35e613779fd8df9b72cb3e9ed6.tar.gz
crawl-ref-01e124b8e5cdbb35e613779fd8df9b72cb3e9ed6.zip
Remove choosing a book for Recite.
Each monster is affected by exactly one book currently. This commit changes it so each monster is individually affect by that one book.
Diffstat (limited to 'crawl-ref/source/player-reacts.cc')
-rw-r--r--crawl-ref/source/player-reacts.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/player-reacts.cc b/crawl-ref/source/player-reacts.cc
index a1fa4d9417..4137c1bee9 100644
--- a/crawl-ref/source/player-reacts.cc
+++ b/crawl-ref/source/player-reacts.cc
@@ -356,7 +356,7 @@ static bool _check_recite()
static int _zin_recite_to_monsters(coord_def where, int prayertype, int, actor *)
{
ASSERT_RANGE(prayertype, 0, NUM_RECITE_TYPES);
- return zin_recite_to_single_monster(where, (recite_type)prayertype);
+ return zin_recite_to_single_monster(where);
}