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, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index 13c0c3d4a7..6f9f464e0c 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -2407,7 +2407,8 @@ 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))
+ && !player_mutation_level(MUT_SAPROVOROUS)
+ && !wearing_amulet(AMU_THE_GOURMAND))
{
return (true);
}