From 6a295d5f7f78f116f71a89332f48ada4ca3ba045 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 22 Apr 2008 22:11:34 +0000 Subject: For now use normal tiles for the blessed blades (WPN_FALCHION rather than WPN_BLESSED_FALCHION etc.) FR 1928401: for undead attempting to Evoke an amulet of rage, print "cannot raise a blood rage" message right away instead of printing the "too hungry" message when applicable. FR 1899121: prompt when using stairs that have an exclusion area centered on them. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4492 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/food.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/food.cc') diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc index 5138d12246..41cd2215f2 100644 --- a/crawl-ref/source/food.cc +++ b/crawl-ref/source/food.cc @@ -841,7 +841,7 @@ void eat_floor_item(int item_link) const bool cannibal = is_player_same_species( food.plus ); const bool rotten = food_is_rotten(food); - if (!_player_can_eat_rotten_meat(true)) + if (rotten && !_player_can_eat_rotten_meat(true)) return; eat_chunk(determine_chunk_effect(chunk_type, rotten), cannibal, intel); -- cgit v1.2.3-54-g00ecf