summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-10-23 22:33:30 +0200
committerAdam Borowski <kilobyte@angband.pl>2009-10-23 22:33:30 +0200
commit117bda0ee0d4787aea2111f3d3a7fe75d4f0acce (patch)
treee209c8a4f76d1fdd27b39761b744905ecc5081c3 /crawl-ref/source/player.cc
parent315853b7738d84350ade652d7b7ab6686a62fadd (diff)
downloadcrawl-ref-117bda0ee0d4787aea2111f3d3a7fe75d4f0acce.tar.gz
crawl-ref-117bda0ee0d4787aea2111f3d3a7fe75d4f0acce.zip
Make Cb's Slow Biology and Time Bend available one piety breakpoint earlier.
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index e74c72aecd..148af8e8f3 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -1200,7 +1200,7 @@ int player_hunger_rate(void)
// If Cheibriados has slowed your life processes, there's a
// chance you'll hunger a bit less.
if (GOD_CHEIBRIADOS == you.religion
- && you.piety >= piety_breakpoint(1)
+ && you.piety >= piety_breakpoint(0)
&& coinflip())
hunger--;
@@ -5297,7 +5297,7 @@ void dec_poison_player()
// chance that your poison level is simply unaffected and
// you aren't hurt by poison.
if (GOD_CHEIBRIADOS == you.religion
- && you.piety >= piety_breakpoint(1)
+ && you.piety >= piety_breakpoint(0)
&& coinflip())
return;
@@ -5568,7 +5568,7 @@ void dec_disease_player()
// If Cheibriados has slowed your life processes, there's a
// chance that your disease level is unaffected.
if (GOD_CHEIBRIADOS == you.religion
- && you.piety >= piety_breakpoint(1)
+ && you.piety >= piety_breakpoint(0)
&& coinflip())
{
return;