From 912869b35ded3164530bed2fc1ff77d043a2831c Mon Sep 17 00:00:00 2001 From: Byemoh Date: Wed, 10 Apr 2024 22:12:57 -0500 Subject: [PATCH] stupid poo poo shuttle (#21838) --- code/modules/shuttle/shuttle_creation/shuttle_creator.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/shuttle/shuttle_creation/shuttle_creator.dm b/code/modules/shuttle/shuttle_creation/shuttle_creator.dm index eff2ba771126..134628121236 100644 --- a/code/modules/shuttle/shuttle_creation/shuttle_creator.dm +++ b/code/modules/shuttle/shuttle_creation/shuttle_creator.dm @@ -180,7 +180,7 @@ GLOBAL_LIST_EMPTY(custom_shuttle_machines) //Machines that require updating (He to_chat(user, "Invalid shuttle, restarting bluespace systems...") return FALSE - var/datum/map_template/shuttle/new_shuttle = new /datum/map_template/shuttle() + //var/datum/map_template/shuttle/new_shuttle = new /datum/map_template/shuttle() var/obj/docking_port/mobile/port = new /obj/docking_port/mobile(get_turf(target)) var/obj/docking_port/stationary/stationary_port = new /obj/docking_port/stationary(get_turf(target)) @@ -227,10 +227,10 @@ GLOBAL_LIST_EMPTY(custom_shuttle_machines) //Machines that require updating (He if(length(curT.baseturfs) < 2) continue //Add the shuttle base shit to the shuttle - curT.baseturfs.Insert(3, /turf/baseturf_skipover/shuttle) + curT.insert_baseturf(3, /turf/baseturf_skipover/shuttle) port.shuttle_areas[cur_area] = TRUE - port.linkup(new_shuttle, stationary_port) + port.linkup(stationary_port) port.movement_force = list("KNOCKDOWN" = 0, "THROW" = 0) port.initiate_docking(stationary_port)