Shuttle now can only be late when arriving

This commit is contained in:
mwerezak
2014-07-05 14:49:30 -04:00
parent cd6594f223
commit 6d0a3b864d

View File

@@ -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