summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/food.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index b564ebcaf2..b5f369e551 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -2630,11 +2630,8 @@ bool can_ingest(int what_isit, int kindof_thing, bool suppress_msg,
mpr("Urks, you're a herbivore!");
return (false);
}
- else
- {
- _check_amu_the_gourmand(false);
- return (true);
- }
+ _check_amu_the_gourmand(you.species == SP_VAMPIRE);
+ return (true);
case POT_WATER:
if (you.species == SP_VAMPIRE)
{