From b0b6e9bc525e05d682f33311086d506b941a0b3f Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Sun, 15 Nov 2009 15:51:32 -0500 Subject: Update delay for mesmerisation, slowing, and haste Also fix a couple compile issues and change over one last case for paralysis --- crawl-ref/source/godwrath.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/godwrath.cc') diff --git a/crawl-ref/source/godwrath.cc b/crawl-ref/source/godwrath.cc index a75f6655df..2cea687761 100644 --- a/crawl-ref/source/godwrath.cc +++ b/crawl-ref/source/godwrath.cc @@ -377,7 +377,7 @@ static bool _cheibriados_retribution() break; case 4: - if (you.duration[DUR_SLOW] < 90) + if (you.duration[DUR_SLOW] < 90 * BASELINE_DELAY) { dec_penance(god, 1); mpr("You feel the world leave you behind!", MSGCH_WARN); @@ -595,7 +595,7 @@ static bool _trog_retribution() case 4: case 5: - if (you.duration[DUR_SLOW] < 90) + if (you.duration[DUR_SLOW] < 90 * BASELINE_DELAY) { dec_penance(god, 1); mpr( "You suddenly feel exhausted!", MSGCH_WARN ); @@ -1186,7 +1186,7 @@ bool divine_retribution(god_type god, bool no_bonus) } else { - if (you.duration[DUR_SLOW] < 90) + if (you.duration[DUR_SLOW] < 90 * BASELINE_DELAY) { mpr( "The divine experience leaves you feeling exhausted!", MSGCH_WARN ); -- cgit v1.2.3-54-g00ecf