diff --git a/Source/inv.cpp b/Source/inv.cpp index d5479c72e..62bb281b3 100644 --- a/Source/inv.cpp +++ b/Source/inv.cpp @@ -2013,7 +2013,7 @@ bool CanUseScroll(Player &player, spell_id spell) return false; return HasInventoryOrBeltItem(player, [spell](const Item &item) { - return item.isScrollOf(spell); + return item.isScrollOf(spell) || item.isRuneOf(spell); }); }