summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-27 04:06:16 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-27 04:06:16 +0000
commitd727d7501fa6f01efbc8a454bb94f96775cdd6fd (patch)
treed498d31a6cf8db54d9d7d31427a591ec057e7966 /crawl-ref/source/food.cc
parentd0723c5c33ad50e40f0bd601d831d64422598e4e (diff)
downloadcrawl-ref-d727d7501fa6f01efbc8a454bb94f96775cdd6fd.tar.gz
crawl-ref-d727d7501fa6f01efbc8a454bb94f96775cdd6fd.zip
Let Vampires bottle blood in forms that can butcher (#7852)
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index f8b8df4b0f..25eaa78a65 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -416,7 +416,8 @@ bool butchery(int which_corpse, bool bottle_blood)
if (!form_can_butcher(you.form))
{
- mpr("You can't butcher in your present form.");
+ mprf("You can't %s in your present form.",
+ bottle_blood ? "bottle blood" : "butcher");
return false;
}