summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godwrath.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-11-15 15:51:32 -0500
committerCharles Otto <ottochar@gmail.com>2009-11-15 23:46:49 -0500
commitb0b6e9bc525e05d682f33311086d506b941a0b3f (patch)
tree6bf777f94f1bbb32709412eb799e52212f9687c1 /crawl-ref/source/godwrath.cc
parent67c7f8f9dbea5d17bdf1ecca94c33a8ac85a5133 (diff)
downloadcrawl-ref-b0b6e9bc525e05d682f33311086d506b941a0b3f.tar.gz
crawl-ref-b0b6e9bc525e05d682f33311086d506b941a0b3f.zip
Update delay for mesmerisation, slowing, and haste
Also fix a couple compile issues and change over one last case for paralysis
Diffstat (limited to 'crawl-ref/source/godwrath.cc')
-rw-r--r--crawl-ref/source/godwrath.cc6
1 files changed, 3 insertions, 3 deletions
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 );