Escape Pod Fixes

This commit is contained in:
Fox-McCloud
2015-03-16 02:18:35 -04:00
parent 84752bc5ed
commit 604b4bb28a
6 changed files with 31 additions and 21 deletions
+4 -4
View File
@@ -46,7 +46,7 @@ var/global/datum/shuttle_controller/shuttle_controller
shuttle.dock_target_station = "escape_pod_1_berth"
shuttle.dock_target_offsite = "escape_pod_1_recovery"
shuttle.transit_direction = NORTH
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + rand(-30, 60) //randomize this so it seems like the pods are being picked up one by one
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN
process_shuttles += shuttle
shuttles["Escape Pod 1"] = shuttle
@@ -60,7 +60,7 @@ var/global/datum/shuttle_controller/shuttle_controller
shuttle.dock_target_station = "escape_pod_2_berth"
shuttle.dock_target_offsite = "escape_pod_2_recovery"
shuttle.transit_direction = NORTH
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + rand(-30, 60) //randomize this so it seems like the pods are being picked up one by one
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN
process_shuttles += shuttle
shuttles["Escape Pod 2"] = shuttle
@@ -74,7 +74,7 @@ var/global/datum/shuttle_controller/shuttle_controller
shuttle.dock_target_station = "escape_pod_3_berth"
shuttle.dock_target_offsite = "escape_pod_3_recovery"
shuttle.transit_direction = EAST
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + rand(-30, 60) //randomize this so it seems like the pods are being picked up one by one
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN
process_shuttles += shuttle
shuttles["Escape Pod 3"] = shuttle
@@ -90,7 +90,7 @@ var/global/datum/shuttle_controller/shuttle_controller
shuttle.dock_target_station = "escape_pod_5_berth"
shuttle.dock_target_offsite = "escape_pod_5_recovery"
shuttle.transit_direction = EAST //should this be WEST? I have no idea.
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN + rand(-30, 60) //randomize this so it seems like the pods are being picked up one by one
shuttle.move_time = SHUTTLE_TRANSIT_DURATION_RETURN
process_shuttles += shuttle
shuttles["Escape Pod 5"] = shuttle