summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 434b5dc504..7022b53ef7 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2030,7 +2030,8 @@ static std::vector<formatted_string> _get_overview_resistances(
int saplevel = player_mutation_level(MUT_SAPROVOROUS);
const char* pregourmand;
const char* postgourmand;
- if ( wearing_amulet(AMU_THE_GOURMAND, calc_unid) )
+
+ if (player_mutation_level(MUT_GOURMAND) || you.duration[DUR_GOURMAND] > 0)
{
pregourmand = "Gourmand : ";
postgourmand = itosym1(1);