Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes to parachuting #403

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading