summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-08-08 21:31:29 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-08-08 21:31:29 -0700
commit22dfc296c44ef981340219c85835e457f00584ce (patch)
treef6a2730dfe3e2d992fc65bf25bf52647858882e8
parent0188e4c8a00be80ef6355a950cf49ff771b0959d (diff)
downloadcrawl-ref-22dfc296c44ef981340219c85835e457f00584ce.tar.gz
crawl-ref-22dfc296c44ef981340219c85835e457f00584ce.zip
Remove an unreachable bloc
-rw-r--r--crawl-ref/source/food.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index 7fb52455eb..7383256078 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -1934,13 +1934,6 @@ bool can_ingest(int what_isit, int kindof_thing, bool suppress_msg,
{
case OBJ_FOOD:
{
- if (you.species == SP_VAMPIRE)
- {
- if (!suppress_msg)
- mpr("Blech - you need blood!");
- return false;
- }
-
if (food_is_veggie(kindof_thing))
{
if (ur_carnivorous)