POLARIS: Fix two mistakes with the shuttle_arrival procs

This commit is contained in:
Arokha Sieyes
2018-01-31 20:56:57 -05:00
parent 378c0bcd06
commit afb24d364f
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -90,7 +90,7 @@
make_sounds(origin, HYPERSPACE_END)
return //someone cancelled the launch
on_shuttle_departure()
on_shuttle_departure(origin)
moving_status = SHUTTLE_INTRANSIT //shouldn't matter but just to be safe
move(origin, destination)
+2
View File
@@ -43,9 +43,11 @@
last_move = world.time
/datum/shuttle/web_shuttle/on_shuttle_departure()
..()
web_master.on_shuttle_departure()
/datum/shuttle/web_shuttle/on_shuttle_arrival()
..()
web_master.on_shuttle_arrival()
/datum/shuttle/web_shuttle/proc/build_destinations()