summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 46c5be41f6..35d4856076 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2966,9 +2966,10 @@ static void _decrement_durations()
// (killing monsters, offering items, ...) might be confusing for characters
// of other religions.
// For now, though, keep information about what happened hidden.
- if (you.duration[DUR_PIETY_POOL] > 0 && one_chance_in(5))
+ if (you.piety < MAX_PIETY && you.duration[DUR_PIETY_POOL] > 0
+ && one_chance_in(5))
{
- you.duration[DUR_PIETY_POOL]--; // Decrease even if piety at maximum.
+ you.duration[DUR_PIETY_POOL]--;
gain_piety(1);
#if DEBUG_DIAGNOSTICS || DEBUG_SACRIFICE || DEBUG_PIETY