Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Maybe Normandy runtimes fix (#103)
Browse files Browse the repository at this point in the history
* experiment

* hmm
  • Loading branch information
Helg2 authored Nov 8, 2023
1 parent bfd5521 commit 8ee48fd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@
/turf/open/shuttle/dropship/floor/alt,
/area/shuttle/dropship/alamo)
"Hj" = (
/obj/machinery/computer/shuttle/marine_dropship/one{
icon_state = "console2"
},
/obj/machinery/computer/shuttle/marine_dropship/two,
/turf/open/shuttle/dropship/floor,
/area/shuttle/dropship/alamo)
"HK" = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,7 @@
},
/area/shuttle/dropship/normandy)
"pm" = (
/obj/machinery/computer/shuttle/marine_dropship/two{
icon_state = "console"
},
/obj/machinery/computer/shuttle/marine_dropship/one,
/turf/closed/shuttle/dropship2/panel{
opacity = 0;
dir = 1
Expand Down
4 changes: 2 additions & 2 deletions modular_RUtgmc/code/datums/shuttles.dm
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/datum/map_template/shuttle/dropship_one
prefix = "modular_RUtgmc/_maps/shuttles/"
prefix = "_maps/~RUTGMC/shuttles/"
shuttle_id = SHUTTLE_NORMANDY
name = "Normandy"

/datum/map_template/shuttle/dropship_two
prefix = "modular_RUtgmc/_maps/shuttles/"
prefix = "_maps/~RUTGMC/shuttles/"
shuttle_id = SHUTTLE_ALAMO
name = "Alamo"
30 changes: 8 additions & 22 deletions modular_RUtgmc/code/modules/shuttle/marine_dropship.dm
Original file line number Diff line number Diff line change
@@ -1,47 +1,33 @@
/obj/docking_port/stationary/marine_dropship/hangar/one
name = "Shipside 'Normandy' Hangar Pad"
id = SHUTTLE_NORMANDY
roundstart_template = /datum/map_template/shuttle/dropship_one

/obj/docking_port/stationary/marine_dropship/hangar/two
name = "Shipside 'Alamo' Hangar Pad"
id = SHUTTLE_ALAMO
roundstart_template = /datum/map_template/shuttle/dropship_two
dheight = 6
dwidth = 4
height = 13
width = 9

/obj/docking_port/mobile/marine_dropship/one
name = "Normandy"
id = SHUTTLE_NORMANDY
control_flags = SHUTTLE_MARINE_PRIMARY_DROPSHIP

/obj/docking_port/mobile/marine_dropship/two
name = "Alamo"
id = SHUTTLE_ALAMO
control_flags = SHUTTLE_MARINE_PRIMARY_DROPSHIP
callTime = 28 SECONDS //smaller shuttle go whoosh
rechargeTime = 1.5 MINUTES
dheight = 6
dwidth = 4
height = 13
width = 9

/obj/machinery/computer/shuttle/shuttle_control/dropship
name = "\improper 'Normandy' dropship console"
desc = "The remote controls for the 'Normandy' Dropship. Named after a department in France, noteworthy for the famous naval invasion of Normandy on the 6th of June 1944, a bloody but decisive victory in World War II and the campaign for the Liberation of France."
shuttleId = SHUTTLE_NORMANDY
icon = 'icons/obj/machines/computer.dmi'
icon_state = "shuttle"
resistance_flags = RESIST_ALL
req_one_access = list(ACCESS_MARINE_DROPSHIP, ACCESS_MARINE_LEADER) // TLs can only operate the remote console
possible_destinations = "lz1;lz2;alamo"
compatible_control_flags = SHUTTLE_MARINE_PRIMARY_DROPSHIP


/obj/machinery/computer/shuttle/shuttle_control/dropship/two
name = "\improper 'Alamo' dropship console"
desc = "The remote controls for the 'Alamo' Dropship. Named after the Alamo Mission, stage of the Battle of the Alamo in the United States' state of Texas in the Spring of 1836. The defenders held to the last, encouraging other Texans to rally to the flag."
shuttleId = SHUTTLE_ALAMO
possible_destinations = "lz1;lz2;normandy;alamo"

/obj/machinery/computer/shuttle/marine_dropship/one
name = "\improper 'Normandy' flight controls"
desc = "The flight controls for the 'Normandy' Dropship. Named after a department in France, noteworthy for the famous naval invasion of Normandy on the 6th of June 1944, a bloody but decisive victory in World War II and the campaign for the Liberation of France."

/obj/machinery/computer/shuttle/marine_dropship/two
name = "\improper 'Alamo' flight controls"
desc = "The flight controls for the 'Alamo' Dropship. Named after the Alamo Mission, stage of the Battle of the Alamo in the United States' state of Texas in the Spring of 1836. The defenders held to the last, encouraging other Texians to rally to the flag."

0 comments on commit 8ee48fd

Please sign in to comment.