From a647fb948535b182ce98246fc02b600d1990436a Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Sun, 15 Nov 2009 21:23:06 -0500 Subject: Delay adjustment for death's door Also update 1 use of DUR_PARALYSIS I missed previously. --- crawl-ref/source/it_use2.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/it_use2.cc') diff --git a/crawl-ref/source/it_use2.cc b/crawl-ref/source/it_use2.cc index c5f4ab302c..bbd9480716 100644 --- a/crawl-ref/source/it_use2.cc +++ b/crawl-ref/source/it_use2.cc @@ -273,7 +273,8 @@ bool potion_effect(potion_type pot_eff, int pow, bool drank_it, bool was_known) case POT_PARALYSIS: you.paralyse(NULL, - (2 + random2( 6 + you.duration[DUR_PARALYSIS] )) / factor); + (2 + random2( 6 + you.duration[DUR_PARALYSIS] + / BASELINE_DELAY )) / factor); xom_is_stimulated(64 / xom_factor); break; -- cgit v1.2.3-54-g00ecf