From 2d9adfea3d4cd45656d17baf9a8b4a2f40de1dc7 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Sat, 7 Nov 2009 18:34:29 +0100 Subject: Double Cheibriados' slow meta to half of a ring of sustenation. --- crawl-ref/source/player.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/player.cc') 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. -- cgit v1.2.3-54-g00ecf