summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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: