POLARIS: Fix two mistakes with the shuttle_arrival procs

This commit is contained in:
Arokha Sieyes
2018-01-31 20:56:57 -05:00
committed by Leshana
parent 70ac478aea
commit 1bc490630d
2 changed files with 3 additions and 1 deletions

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)

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()