From 38a99d5fb299818a3fa0dc79c9ddc5d0379aeb0a Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Thu, 1 Oct 2009 20:32:38 -0500 Subject: Clean up the Kiku changes a bit. --- crawl-ref/source/food.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/food.cc') diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc index 712ffef62b..13cfb87116 100644 --- a/crawl-ref/source/food.cc +++ b/crawl-ref/source/food.cc @@ -364,9 +364,9 @@ static bool _butcher_corpse(int corpse_id, bool first_corpse = true, { start_delay(DELAY_OFFER_CORPSE, 0, corpse_id); - // Kiku torments if you butcher a corpse while praying - bool kiku_torments = (you.religion == GOD_KIKUBAAQUDGHA && you.piety > 120); - if (kiku_torments) + // Kiku torments if you butcher a corpse while praying. + if (you.religion == GOD_KIKUBAAQUDGHA + && you.piety >= piety_breakpoint(4))) { simple_god_message(" inflicts torment against the living!"); torment(TORMENT_GENERIC, you.pos()); -- cgit v1.2.3-54-g00ecf