summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-03-31 18:06:24 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-07 18:23:18 -0600
commit985d96caa06b0afcde7e323a159828a871d83d11 (patch)
tree0c28c409d3a786afffb919bde6e6b428420ba0ad /crawl-ref/source/output.cc
parentd7d6c261e2e448f9f165564f3f63ec559af269ab (diff)
downloadcrawl-ref-985d96caa06b0afcde7e323a159828a871d83d11.tar.gz
crawl-ref-985d96caa06b0afcde7e323a159828a871d83d11.zip
Gozag: enums, descriptions.
Handles some functionality for having a god without piety.
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 7b45d14ada..de5114157c 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2010,7 +2010,7 @@ static string _god_powers(bool simple)
{
if (player_under_penance())
return simple ? "*" : colour_string("*" + godpowers, RED);
- else
+ else if (!you_worship(GOD_GOZAG))
{
// piety rankings
int prank = piety_rank() - 1;