summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/religion.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 5dfcf5f19f..c85b4272f0 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -2683,7 +2683,8 @@ void god_pitch(god_type which_god)
}
}
- if ( you.religion == GOD_LUGONU && !you.worshipped[GOD_LUGONU] )
+ // note that you.worshipped[] has already been incremented
+ if ( you.religion == GOD_LUGONU && you.worshipped[GOD_LUGONU] == 1 )
gain_piety(20); // allow instant access to first power
redraw_skill( you.your_name, player_title() );