summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-08-08 21:36:44 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-08-08 21:36:44 -0700
commitc20932bd5d504237d21324df6ad14eb1dece7ef8 (patch)
treed0d0eb415ab98e699a2011a8890e214bd053a4b3
parent22dfc296c44ef981340219c85835e457f00584ce (diff)
downloadcrawl-ref-c20932bd5d504237d21324df6ad14eb1dece7ef8.tar.gz
crawl-ref-c20932bd5d504237d21324df6ad14eb1dece7ef8.zip
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.)
-rw-r--r--crawl-ref/source/food.cc3
1 files changed, 1 insertions, 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 <w>%s</w> instead%s. Continue anyway?",