summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-21 17:30:19 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-09-21 17:30:19 +0000
commitdb6775f6fcf45e64dd1ed27568532a27f2acf11d (patch)
tree3a11b47d739854ff2d1e493ff8a960e5350f0fa9 /crawl-ref/source/food.cc
parentd6e0b68b50226f511107801bb2c11f6b358fbbc7 (diff)
downloadcrawl-ref-db6775f6fcf45e64dd1ed27568532a27f2acf11d.tar.gz
crawl-ref-db6775f6fcf45e64dd1ed27568532a27f2acf11d.zip
2088461: identify Holy Wrath brand on failed wield.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6965 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index 85339ceab0..f5c0823b2d 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -204,7 +204,7 @@ static int _find_butchering_implement(int &butcher_tool)
// Look for a butchering implement in your pack.
for (int i = 0; i < ENDOFPACK; ++i)
{
- const item_def& tool(you.inv[i]);
+ item_def& tool(you.inv[i]);
if (is_valid_item( tool )
&& tool.base_type == OBJ_WEAPONS
&& can_cut_meat( tool )