summaryrefslogtreecommitdiffstats
path: root/crawl-ref
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
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')
-rw-r--r--crawl-ref/source/dat/descript/gods.txt2
-rw-r--r--crawl-ref/source/religion.cc2
2 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/dat/descript/gods.txt b/crawl-ref/source/dat/descript/gods.txt
index e90d5a7110..36d2426fe2 100644
--- a/crawl-ref/source/dat/descript/gods.txt
+++ b/crawl-ref/source/dat/descript/gods.txt
@@ -142,5 +142,5 @@ Feawn encourages followers to promote the growth of plant life.
%%%%
Cheibriados powers
-Followers are rewarded for moving slowly and killing creatures which are faster than they are. Moving too quickly or using magically hastened weapons is frowned upon. He rewards his faithful with a slowed metabolism, the power to slow other creatures, harm those who move more quickly than you do and finally, the ability to step out of the flow of time.
+Followers are rewarded for resting with their tummies satisfied, moving slowly and killing creatures which are faster than they are. Moving too quickly or using magically hastened weapons is frowned upon. He rewards his faithful with a slowed metabolism, the power to slow other creatures, harm those who move more quickly than you do and finally, the ability to step out of the flow of time.
%%%%
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);