From dfddbc23c346f841944ac31e7cf7bcf897460e27 Mon Sep 17 00:00:00 2001 From: shellspeed1 Date: Thu, 22 Sep 2022 01:10:08 -0700 Subject: [PATCH] ports https://github.com/tgstation/tgstation/pull/53603 Credit to TiviPlus --- _maps/RandomRuins/SpaceRuins/whiteshipdock.dmm | 11 +---------- code/modules/shuttle/shuttle.dm | 10 ++++++++++ 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm index b5f2fb2237..ca0a4b55aa 100644 --- a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm +++ b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm @@ -3,16 +3,7 @@ /turf/open/space/basic, /area/space) "b" = ( -/obj/docking_port/stationary{ - dheight = 0; - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_away"; - json_key = "whiteship"; - name = "Deep Space"; - width = 35 - }, +/obj/docking_port/stationary/picked/whiteship, /turf/open/space, /area/space) diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index dc23a64d3d..1fc81e38b8 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -299,6 +299,16 @@ reserved_area = null return ..() +/obj/docking_port/stationary/picked/whiteship + name = "Deep Space" + id = "whiteship_away" + dheight = 0 + dir = 2 + dwidth = 11 + height = 22 + width = 35 + shuttlekeys = list("whiteship_meta", "whiteship_pubby", "whiteship_box", "whiteship_cere", "whiteship_kilo", "whiteship_donut", "whiteship_delta") + /obj/docking_port/stationary/picked ///Holds a list of map name strings for the port to pick from var/list/shuttlekeys