summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-23 22:30:33 +0200
committerAdam Borowski <kilobyte@angband.pl>2009-10-23 22:30:33 +0200
commit315853b7738d84350ade652d7b7ab6686a62fadd (patch)
tree7347d467985287bc8555ca6e0e002958c3ec01a1 /crawl-ref/source/religion.cc
parenta918fa5811087dade5c8bbe4836882cdbd63ef65 (diff)
downloadcrawl-ref-315853b7738d84350ade652d7b7ab6686a62fadd.tar.gz
crawl-ref-315853b7738d84350ade652d7b7ab6686a62fadd.zip
No free Cb piety if you're not full. Sorry, mummies.
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index f85f8140ff..851826f270 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -7222,6 +7222,8 @@ void handle_god_time()
return;
case GOD_CHEIBRIADOS:
+ if (you.hunger_state < HS_FULL)
+ return;
case GOD_SHINING_ONE:
if (_need_free_piety() && one_chance_in(15))
gain_piety(1);