From c20932bd5d504237d21324df6ad14eb1dece7ef8 Mon Sep 17 00:00:00 2001 From: Nicholas Feinberg Date: Fri, 8 Aug 2014 21:36:44 -0700 Subject: Don't check for Sublimation in butchering prompts Specifically, when considering whether to warn vampires that they could drain blood instead. (The presence of Sublimation is no longer relevant.) --- crawl-ref/source/food.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc index 7383256078..48b21d590a 100644 --- a/crawl-ref/source/food.cc +++ b/crawl-ref/source/food.cc @@ -251,8 +251,7 @@ static bool _should_butcher(int corpse_id, bool bottle_blood = false) } else if (!bottle_blood && you.species == SP_VAMPIRE && (can_bottle_blood_from_corpse(corpse.mon_type) - || mons_has_blood(corpse.mon_type) && !is_bad_food(corpse)) - && !you.has_spell(SPELL_SUBLIMATION_OF_BLOOD)) + || mons_has_blood(corpse.mon_type) && !is_bad_food(corpse))) { bool can_bottle = can_bottle_blood_from_corpse(corpse.mon_type); const string msg = make_stringf("You could drain this corpse's blood with %s instead%s. Continue anyway?", -- cgit v1.2.3-54-g00ecf