Skip to content

Commit

Permalink
stupid poo poo shuttle (#21838)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToasterBiome authored Apr 11, 2024
1 parent 7974d9a commit 912869b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/shuttle/shuttle_creation/shuttle_creator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ GLOBAL_LIST_EMPTY(custom_shuttle_machines) //Machines that require updating (He
to_chat(user, "<span class='warning'>Invalid shuttle, restarting bluespace systems...</span>")
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))
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 912869b

Please sign in to comment.