summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-transloc.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-05-21 21:56:15 +0100
committerChris Campbell <chriscampbell89@gmail.com>2013-05-22 19:56:44 +0100
commit4f4fbe6e833c4d98614c0e5d45905bd45337cf05 (patch)
tree589c05c33d09fa367a3b5291016dd47e42175c7c /crawl-ref/source/spl-transloc.cc
parenta664e93417e2650da894bcfc1af399579946f289 (diff)
downloadcrawl-ref-4f4fbe6e833c4d98614c0e5d45905bd45337cf05.tar.gz
crawl-ref-4f4fbe6e833c4d98614c0e5d45905bd45337cf05.zip
Delay all teleports on the orbrun, instead of half of them
Since previously it was often a good idea to cancel and restart teleports for a chance of getting a non-delayed one.
Diffstat (limited to 'crawl-ref/source/spl-transloc.cc')
-rw-r--r--crawl-ref/source/spl-transloc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-transloc.cc b/crawl-ref/source/spl-transloc.cc
index 80d255fdd7..fd6a518f3e 100644
--- a/crawl-ref/source/spl-transloc.cc
+++ b/crawl-ref/source/spl-transloc.cc
@@ -402,7 +402,7 @@ void you_teleport(void)
mpr("You feel the power of the Abyss delaying your translocation.");
teleport_delay += 5 + random2(10);
}
- else if (orb_haloed(you.pos()) && coinflip())
+ else if (orb_haloed(you.pos()))
{
mpr("You feel the orb delaying this translocation!", MSGCH_ORB);
teleport_delay += 5 + random2(5);