summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 3779037005..c5cbc035f2 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -4667,7 +4667,11 @@ static void handle_read_book(int item_slot)
return;
}
- describe_spell(spell);
+ describe_spell(spell, &book);
+
+ // Player memorised spell which was being looked at.
+ if (you.turn_is_over)
+ return;
}
}