summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transfor.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/transfor.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/transfor.cc')
-rw-r--r--crawl-ref/source/transfor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/transfor.cc b/crawl-ref/source/transfor.cc
index 762c3e00c8..f0f6380b43 100644
--- a/crawl-ref/source/transfor.cc
+++ b/crawl-ref/source/transfor.cc
@@ -720,8 +720,8 @@ bool transform(int pow, transformation_type which_trans, bool force,
if (which_trans == TRAN_PIG)
{ // no easy way around this!
mpr("A dreadful feeling locks you in place!");
- if (you.duration[DUR_PARALYSIS]<10 * BASELINE_DURATION)
- you.duration[DUR_PARALYSIS]=10 * BASELINE_DURATION;
+ if (you.duration[DUR_PARALYSIS]<10 * BASELINE_DELAY)
+ you.duration[DUR_PARALYSIS]=10 * BASELINE_DELAY;
}
return (_abort_or_fizzle(just_check));
}