From b7146954ad091407e92804cbf0a371b4a8f435db Mon Sep 17 00:00:00 2001 From: Charles Otto Date: Sun, 15 Nov 2009 01:44:46 -0500 Subject: Make teleportation delay based on total delay not turns --- crawl-ref/source/spells3.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/spells3.cc') diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc index 253efe2494..f8f244cc8b 100644 --- a/crawl-ref/source/spells3.cc +++ b/crawl-ref/source/spells3.cc @@ -1395,12 +1395,13 @@ void you_teleport(void) mpr("You feel strangely unstable."); you.duration[DUR_TELEPORT] = 3 + random2(3); - if (you.level_type == LEVEL_ABYSS && !one_chance_in(5)) { mpr("You have a feeling this translocation may take a while to kick in..."); you.duration[DUR_TELEPORT] += 5 + random2(10); } + + you.duration[DUR_TELEPORT] *= BASELINE_DELAY; } } -- cgit v1.2.3-54-g00ecf