summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells3.cc3
1 files changed, 2 insertions, 1 deletions
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;
}
}