summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index 6f9f464e0c..13c0c3d4a7 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -2407,8 +2407,7 @@ static int _player_likes_food_type(int type)
bool is_inedible(const item_def &item)
{
if (food_is_rotten(item)
- && !player_mutation_level(MUT_SAPROVOROUS)
- && !wearing_amulet(AMU_THE_GOURMAND))
+ && !player_mutation_level(MUT_SAPROVOROUS))
{
return (true);
}