From e0afb0632b61f794e0f3e8fde12c9d4e1c7b1e26 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Sat, 5 Jul 2014 14:49:30 -0400 Subject: [PATCH] Shuttle now can only be late when arriving --- code/modules/shuttles/shuttle_supply.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/shuttles/shuttle_supply.dm b/code/modules/shuttles/shuttle_supply.dm index 7b60f7b50b5..a33f067c8ec 100644 --- a/code/modules/shuttles/shuttle_supply.dm +++ b/code/modules/shuttles/shuttle_supply.dm @@ -46,11 +46,11 @@ while (world.time <= arrive_time) sleep(5) - //late - if (prob(late_chance)) - sleep(rand(0,max_late_time)) - if (destination != away_area) + //late + if (prob(late_chance)) + sleep(rand(0,max_late_time)) + move(away_area, destination) moving_status = SHUTTLE_IDLE