From a847b70b8aa4b8ff99fd946db0069b6c52285243 Mon Sep 17 00:00:00 2001 From: dolorous Date: Sat, 18 Jul 2009 02:14:09 +0000 Subject: Improve the redundancy check for the amulet of the gourmand. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10263 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/itemname.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc index 98ec4bc9ed..c5da1c9cdf 100644 --- a/crawl-ref/source/itemname.cc +++ b/crawl-ref/source/itemname.cc @@ -2601,8 +2601,8 @@ bool is_useless_item(const item_def &item, bool temp) || you.religion == GOD_TROG); case AMU_THE_GOURMAND: - return ((player_mutation_level(MUT_HERBIVOROUS) == 3) - || player_mutation_level(MUT_GOURMAND) + return (player_likes_chunks(true) + || (player_mutation_level(MUT_HERBIVOROUS) == 3) || you.species == SP_MUMMY); case RING_LIFE_PROTECTION: -- cgit v1.2.3-54-g00ecf