From 08af592fcdfc5f215a97dfca4f5bacfe5333e3e6 Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 23 Feb 2009 20:54:24 +0000 Subject: Properly display the gourmand and slow healing mutations on the "%" screen. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9184 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc index 5e64e8e7e4..9e2a1c8f25 100644 --- a/crawl-ref/source/output.cc +++ b/crawl-ref/source/output.cc @@ -2673,6 +2673,9 @@ std::string _status_mut_abilities() snprintf(info, INFO_SIZE, "saprovore %d", level); current = info; break; + case MUT_GOURMAND: + current = "gourmand"; + break; case MUT_CARNIVOROUS: snprintf(info, INFO_SIZE, "carnivore %d", level); current = info; @@ -2696,6 +2699,10 @@ std::string _status_mut_abilities() snprintf(info, INFO_SIZE, "regeneration %d", level); current = info; break; + case MUT_SLOW_HEALING: + snprintf(info, INFO_SIZE, "slow healing %d", level); + current = info; + break; case MUT_FAST_METABOLISM: snprintf(info, INFO_SIZE, "fast metabolism %d", level); current = info; -- cgit v1.2.3-54-g00ecf