summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-22 21:01:59 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-22 21:01:59 +0000
commitaff23ef6538fe364b5b30f2589c00c6582be3528 (patch)
tree0d68368851841b3e69851d251f6e84871498674f /crawl-ref/source/food.cc
parent667fb5a810208fbf8bb4d78e4cbe45ab1a0c104c (diff)
downloadcrawl-ref-aff23ef6538fe364b5b30f2589c00c6582be3528.tar.gz
crawl-ref-aff23ef6538fe364b5b30f2589c00c6582be3528.zip
* Don't offer rotten chunks for wearers of "otG since it doesn't
actually allow eating of rotten stuff. * Tweak Xom's mood descriptions -> shortened to 7. * Increase chance of Xom acting under tension: 5% -> 10% git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9535 c06c8d41-db1a-0410-9941-cceddc491573
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);
}