summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc6
1 files changed, 3 insertions, 3 deletions
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());