Skip to content

Commit

Permalink
fixes to parachuting (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
DexterDude committed Aug 23, 2024
1 parent 274b300 commit 20c8b43
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/game/turfs/transit.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
15 changes: 15 additions & 0 deletions code/modules/shuttle/shuttles/dropship.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 20c8b43

Please sign in to comment.