From 664400de5a05b96cebdd08dd0aa5a10d0ff739f1 Mon Sep 17 00:00:00 2001 From: dolorous Date: Fri, 14 Mar 2008 02:11:55 +0000 Subject: Add minor comment fix. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3627 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/food.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/food.cc') 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(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!"); -- cgit v1.2.3-54-g00ecf