summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-12 08:19:20 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-12 08:19:20 +0000
commit3889c68a4f6e3fb92e098f5d40f36bb06da022fa (patch)
treef97163c464ec5c4cf1d85ff39a91ab96b6befd13 /crawl-ref/source/describe.cc
parent21695abdc349e579845565976a72d5600a1f8c4a (diff)
downloadcrawl-ref-3889c68a4f6e3fb92e098f5d40f36bb06da022fa.tar.gz
crawl-ref-3889c68a4f6e3fb92e098f5d40f36bb06da022fa.zip
Mention the mutation-curing ability on the "^" screen.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10175 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 72293bb633..21803a8328 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3067,6 +3067,14 @@ static std::string _religion_help( god_type god )
{
case GOD_ZIN:
result += "You can pray at an altar to donate your money.";
+ if (!player_under_penance() && you.piety > 160
+ && !you.num_gifts[god])
+ {
+ if (!result.empty())
+ result += " ";
+
+ result += "You can have all your mutations cured.";
+ }
break;
case GOD_SHINING_ONE: