summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-08-09 09:09:46 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-08-09 09:09:46 -0700
commit717e049fe177fd9d9624f223479c362db2051171 (patch)
tree912fb5975ae1bbe72e94bb6141107fa02f65a977
parenta701d29d88ca340a47928f96601824f3c91b2bf8 (diff)
downloadcrawl-ref-717e049fe177fd9d9624f223479c362db2051171.tar.gz
crawl-ref-717e049fe177fd9d9624f223479c362db2051171.zip
Re-add a vampire message (|amethyst)
-rw-r--r--crawl-ref/source/food.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index 79ae828b70..3fcd2ff80c 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -629,6 +629,9 @@ bool eat_food(int slot)
}
}
+ if (you.species == SP_VAMPIRE)
+ mpr("There's nothing here to drain!");
+
return prompt_eat_inventory_item(slot);
}