summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-12-27 19:25:32 +0300
committerVsevolod Kozlov <zaba@thorium.homeunix.org>2009-12-27 19:25:32 +0300
commitdc3e12a4da48363a7cadb77f30b8e784d5f82acf (patch)
treedadef79197a359e2c24a68a32284b6b6c79eb536 /crawl-ref/source/food.cc
parent507c3523d54cd2c15185f06f8be1f1ea353497d8 (diff)
downloadcrawl-ref-dc3e12a4da48363a7cadb77f30b8e784d5f82acf.tar.gz
crawl-ref-dc3e12a4da48363a7cadb77f30b8e784d5f82acf.zip
Replace uses of item_cursed with item_def::cursed.
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 112f9e1739..bd2db8d728 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -377,7 +377,7 @@ static void _terminate_butchery(bool wpn_switch, bool removed_gloves,
{
// Switch weapon back.
if (wpn_switch && you.equip[EQ_WEAPON] != old_weapon
- && (!you.weapon() || !item_cursed(*you.weapon())))
+ && (!you.weapon() || !you.weapon()->cursed()))
{
start_delay(DELAY_WEAPON_SWAP, 1, old_weapon);
}
@@ -479,7 +479,7 @@ bool butchery(int which_corpse)
&& !player_wearing_slot(EQ_GLOVES);
bool gloved_butcher = (you.has_claws() && player_wearing_slot(EQ_GLOVES)
- && !item_cursed(you.inv[you.equip[EQ_GLOVES]]));
+ && !you.inv[you.equip[EQ_GLOVES]].cursed());
bool can_butcher = (teeth_butcher || barehand_butcher
|| you.weapon() && can_cut_meat(*you.weapon()));