summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-25 01:02:28 +0200
committerAdam Borowski <kilobyte@angband.pl>2009-10-25 01:02:28 +0200
commit5ed2653977325b3ca325890ff9e8a07b357ed421 (patch)
tree5c3cb752b3f5658007e65b6a8035d5de85a331b3 /crawl-ref/source/religion.cc
parente5947ad199f02a46899fbe544f0c165333915afe (diff)
downloadcrawl-ref-5ed2653977325b3ca325890ff9e8a07b357ed421.tar.gz
crawl-ref-5ed2653977325b3ca325890ff9e8a07b357ed421.zip
Revert Cb's piety only while resting, change the description instead.
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index c2e950b5fe..456ea0c176 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -7222,10 +7222,9 @@ void handle_god_time()
return;
case GOD_CHEIBRIADOS:
- if (you.hunger_state < HS_FULL || you.delay_queue.empty()
- || you.delay_queue.front().type != DELAY_REST)
+ if (you.hunger_state < HS_FULL)
return;
- if (_need_free_piety() && one_chance_in(3))
+ if (_need_free_piety() && one_chance_in(12))
gain_piety(1);
return;