summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 79a4a68779..6bcfb9a3ac 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -629,17 +629,17 @@ void wield_effects(int item_wield_2, bool showMsgs)
break;
}
- if (you.is_undead != US_UNDEAD)
+ if (you.is_undead == US_ALIVE)
{
mpr("You feel a dreadful hunger.");
+ // takes player from Full to Hungry
+ make_hungry(4500, false, false);
}
else
{
mpr("You feel an empty sense of dread.");
}
- // takes player from Full to Hungry
- make_hungry(4500, false, false);
break;
case SPWPN_RETURNING: