summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/item_use.cc3
-rw-r--r--crawl-ref/source/tilereg.cc3
2 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index bcd3e0f29c..f438fc122a 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -6041,7 +6041,8 @@ void tile_item_use(int idx)
case OBJ_BOOKS:
if (item.sub_type == BOOK_MANUAL
- || item.sub_type == BOOK_DESTRUCTION)
+ || item.sub_type == BOOK_DESTRUCTION
+ || you.skills[SK_SPELLCASTING] == 0)
{
if (check_warning_inscriptions(item, OPER_READ))
handle_read_book(idx);
diff --git a/crawl-ref/source/tilereg.cc b/crawl-ref/source/tilereg.cc
index 7c5eaaca62..04cbd5c33c 100644
--- a/crawl-ref/source/tilereg.cc
+++ b/crawl-ref/source/tilereg.cc
@@ -2821,7 +2821,8 @@ bool InventoryRegion::update_tip_text(std::string& tip)
case OBJ_BOOKS:
if (item_type_known(item)
&& item.sub_type != BOOK_MANUAL
- && item.sub_type != BOOK_DESTRUCTION)
+ && item.sub_type != BOOK_DESTRUCTION
+ && you.skills[SK_SPELLCASTING] > 0)
{
tip += "Memorise (M)";
if (wielded)