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.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index aceb6acc94..621abf33bd 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -282,7 +282,8 @@ static bool _prepare_butchery(bool can_butcher, bool barehand_butcher,
}
you.turn_is_over = true;
- // switched to a good butchering tool
+
+ // Switched to a good butchering tool.
return (true);
}
@@ -1947,6 +1948,9 @@ bool is_preferred_food(const item_def &food)
if (you.species == SP_VAMPIRE)
return (is_blood_potion(food));
+ if (food.base_type == OBJ_POTIONS && food.sub_type == POT_PORRIDGE)
+ return (!player_mutation_level(MUT_CARNIVOROUS));
+
if (food.base_type != OBJ_FOOD)
return (false);