summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 19:52:52 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-08 19:52:52 +0000
commite628026533c6037acce8ce945425ce1523285a15 (patch)
tree65552b246f862612f51ec3fc66888462011bde80 /crawl-ref/source/food.cc
parent59b0b82d8f9b8c0be8a1ea405c3b4127233e8e18 (diff)
downloadcrawl-ref-e628026533c6037acce8ce945425ce1523285a15.tar.gz
crawl-ref-e628026533c6037acce8ce945425ce1523285a15.zip
Lower chance of vampiric bite during bat form, and if it happens, halve
healing and nutrition gain. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5606 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index 07759d0fcc..b1daa6c5e7 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -726,7 +726,7 @@ bool prompt_eat_from_inventory(int slot)
return (false);
}
- // this conditional can later be merged into food::can_ingest() when
+ // This conditional can later be merged into food::can_ingest() when
// expanded to handle more than just OBJ_FOOD 16mar200 {dlb}
if (you.species != SP_VAMPIRE)
{
@@ -760,7 +760,7 @@ bool prompt_eat_from_inventory(int slot)
return (true);
}
-// [ds] Returns true if something was eaten
+// [ds] Returns true if something was eaten.
bool eat_food(bool run_hook, int slot)
{
if (you.is_undead == US_UNDEAD)