From 20c8b43079df401149a860d10fcbee74a5e8410c Mon Sep 17 00:00:00 2001 From: DexterDude Date: Fri, 23 Aug 2024 07:59:24 -0400 Subject: [PATCH] fixes to parachuting (#403) --- code/game/turfs/transit.dm | 4 ++++ code/modules/shuttle/shuttles/dropship.dm | 15 +++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/code/game/turfs/transit.dm b/code/game/turfs/transit.dm index 11f3d50ce4..2e5396d0b1 100644 --- a/code/game/turfs/transit.dm +++ b/code/game/turfs/transit.dm @@ -261,6 +261,10 @@ shuttle_tag = DROPSHIP_TRIPOLI dir = SOUTH +/turf/open/space/transit/dropship/upp + shuttle_tag = DROPSHIP_UPP + dir = SOUTH + /turf/open/space/transit/south dir = SOUTH diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm index 5819ede980..23bb364e85 100644 --- a/code/modules/shuttle/shuttles/dropship.dm +++ b/code/modules/shuttle/shuttles/dropship.dm @@ -142,6 +142,9 @@ dwidth = 4 dheight = 8 +/obj/docking_port/mobile/marine_dropship/upp/get_transit_path_type() + return /turf/open/space/transit/dropship/upp + /obj/docking_port/mobile/marine_dropship/cyclone name = "Cyclone" id = DROPSHIP_CYCLONE @@ -151,6 +154,9 @@ dwidth = 4 dheight = 8 +/obj/docking_port/mobile/marine_dropship/cyclone/get_transit_path_type() + return /turf/open/space/transit/dropship/cyclone + /obj/docking_port/mobile/marine_dropship/tornado name = "HLD-Tornado" id = DROPSHIP_TORNADO @@ -160,6 +166,9 @@ dwidth = 5 dheight = 9 +/obj/docking_port/mobile/marine_dropship/tornado/get_transit_path_type() + return /turf/open/space/transit/dropship/tornado + /obj/docking_port/mobile/marine_dropship/typhoon name = "CMD-Typhoon" id = DROPSHIP_TYPHOON @@ -169,6 +178,9 @@ dwidth = 5 dheight = 9 +/obj/docking_port/mobile/marine_dropship/typhoon/get_transit_path_type() + return /turf/open/space/transit/dropship/typhoon + /obj/docking_port/mobile/marine_dropship/tripoli name = "Tripoli" id = DROPSHIP_TRIPOLI @@ -178,6 +190,9 @@ dwidth = 4 dheight = 8 +/obj/docking_port/mobile/marine_dropship/tripoli/get_transit_path_type() + return /turf/open/space/transit/dropship/tripoli + /obj/docking_port/mobile/marine_dropship/alamo name = "Alamo" id = DROPSHIP_ALAMO