From 9d27cb5d7659c6dbde473ffb2a0b05a29d887485 Mon Sep 17 00:00:00 2001 From: Giacomand Date: Mon, 21 Apr 2014 21:00:23 +0100 Subject: [PATCH] Fixes a typo. --- code/game/objects/structures/transit_tubes/station.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/transit_tubes/station.dm b/code/game/objects/structures/transit_tubes/station.dm index fd0a4bfe2a3..327b1aa5906 100644 --- a/code/game/objects/structures/transit_tubes/station.dm +++ b/code/game/objects/structures/transit_tubes/station.dm @@ -22,7 +22,7 @@ processing_objects += src /obj/structure/transit_tube/station/Destroy() - proccessing_objects -= src + processing_objects -= src ..() // Stations which will send the tube in the opposite direction after their stop. @@ -116,7 +116,7 @@ /obj/structure/transit_tube/station/pod_stopped(obj/structure/transit_tube_pod/pod, from_dir) pod_moving = 1 - spawn(0) + spawn(5) launch_cooldown = world.time + cooldown_delay open_animation() sleep(OPEN_DURATION + 2)