summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 707a0d83c3..392ac6d5ee 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -3332,10 +3332,6 @@ bool is_useless_item(const item_def &item, bool temp)
case OBJ_POTIONS:
{
- // Not useless, even if you can't quaff it.
- if (you.has_spell(SPELL_SUBLIMATION_OF_BLOOD) && is_blood_potion(item))
- return false;
-
// Mummies can't use potions.
if (you.species == SP_MUMMY)
return true;
@@ -3497,8 +3493,7 @@ bool is_useless_item(const item_def &item, bool temp)
return false;
if (item.sub_type == FOOD_CHUNK
- && (you.has_spell(SPELL_SUBLIMATION_OF_BLOOD)
- || !temp && you.form == TRAN_LICH))
+ && !temp && you.form == TRAN_LICH)
{
return false;
}
@@ -3521,9 +3516,6 @@ bool is_useless_item(const item_def &item, bool temp)
return false;
}
- if (you.has_spell(SPELL_SUBLIMATION_OF_BLOOD))
- return false;
-
return true;
case OBJ_MISCELLANY: