summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2009-11-07 18:34:29 +0100
committerAdam Borowski <kilobyte@angband.pl>2009-11-07 18:34:29 +0100
commit2d9adfea3d4cd45656d17baf9a8b4a2f40de1dc7 (patch)
treee901cb5012b1439aa43bedda0202b0cbc9c3efad /crawl-ref/source/player.cc
parente4c1104b772b1f093e1c8230dd5f1cb62253a7a3 (diff)
downloadcrawl-ref-2d9adfea3d4cd45656d17baf9a8b4a2f40de1dc7.tar.gz
crawl-ref-2d9adfea3d4cd45656d17baf9a8b4a2f40de1dc7.zip
Double Cheibriados' slow meta to half of a ring of sustenation.
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 2316dc266d..c09358b1f2 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -1143,11 +1143,9 @@ int player_hunger_rate(void)
if (you.duration[DUR_REGENERATION] && you.hp < you.hp_max)
hunger += 4;
- // If Cheibriados has slowed your life processes, there's a
- // chance you'll hunger a bit less.
+ // If Cheibriados has slowed your life processes, you will hunger less.
if (GOD_CHEIBRIADOS == you.religion
- && you.piety >= piety_breakpoint(0)
- && coinflip())
+ && you.piety >= piety_breakpoint(0))
hunger--;
// Moved here from acr.cc... maintaining the >= 40 behaviour.