summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-14 02:11:55 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-14 02:11:55 +0000
commit664400de5a05b96cebdd08dd0aa5a10d0ff739f1 (patch)
tree608b2d9150bb6ec098350259c45eb0f379758ffe /crawl-ref/source/food.cc
parentf01463de3abf61a8c3057b7aa70841e000cf55f4 (diff)
downloadcrawl-ref-664400de5a05b96cebdd08dd0aa5a10d0ff739f1.tar.gz
crawl-ref-664400de5a05b96cebdd08dd0aa5a10d0ff739f1.zip
Add minor comment fix.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3627 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index d3bd27cc73..3c72dbb878 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -219,9 +219,9 @@ bool butchery(int which_corpse)
const transformation_type transform =
static_cast<transformation_type>(you.attribute[ATTR_TRANSFORMATION]);
-
+
// Xom probably likes this, occasionally
- // Vampires fangs are optimised for biting, not for tearing flesh.
+ // Vampires' fangs are optimised for biting, not for tearing flesh.
// Other species with this mutation still might benefit from this.
bool teeth_butcher = (you.mutation[MUT_FANGS] == 3
&& you.species != SP_VAMPIRE);
@@ -235,7 +235,7 @@ bool butchery(int which_corpse)
bool can_butcher = teeth_butcher || barehand_butcher
|| you.equip[EQ_WEAPON] != -1
&& can_cut_meat(you.inv[you.equip[EQ_WEAPON]]);
-
+
if (igrd[you.x_pos][you.y_pos] == NON_ITEM)
{
mpr("There isn't anything here!");