Skip to content

Commit

Permalink
yep works
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsVyzo committed Mar 27, 2024
1 parent 0275359 commit 8569047
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions code/modules/gear_presets/uscm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@
name = "USCM Squad Leader"
flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE

access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP)
access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER)
assignment = JOB_SQUAD_LEADER
rank = JOB_SQUAD_LEADER
paygrade = PAY_SHORT_ME5
Expand Down Expand Up @@ -518,7 +518,7 @@
name = "USCM Squad Leader (Equipped)"
flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE

access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP)
access = list(ACCESS_MARINE_PREP, ACCESS_MARINE_LEADER)
assignment = JOB_SQUAD_LEADER
rank = JOB_SQUAD_LEADER
paygrade = PAY_SHORT_ME5
Expand Down
2 changes: 1 addition & 1 deletion code/modules/shuttle/computers/dropship_computer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
desc = "A flight computer that can be used for autopilot or long-range flights."
icon = 'icons/obj/structures/machinery/shuttle-parts.dmi'
icon_state = "console"
req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP)
req_one_access = list(ACCESS_MARINE_DROPSHIP)
unacidable = TRUE
exproof = TRUE
needs_power = FALSE
Expand Down
4 changes: 2 additions & 2 deletions code/modules/shuttles/shuttle_console.dm
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls)
unslashable = TRUE
unacidable = TRUE
exproof = 1
req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP)
req_one_access = list(ACCESS_MARINE_DROPSHIP)

/obj/structure/machinery/computer/shuttle_control/dropship1/Initialize()
. = ..()
Expand All @@ -382,7 +382,7 @@ GLOBAL_LIST_EMPTY(shuttle_controls)
unslashable = TRUE
unacidable = TRUE
exproof = 1
req_one_access = list(ACCESS_MARINE_LEADER, ACCESS_MARINE_DROPSHIP)
req_one_access = list(ACCESS_MARINE_DROPSHIP)

/obj/structure/machinery/computer/shuttle_control/dropship2/Initialize()
. = ..()
Expand Down

0 comments on commit 8569047

Please sign in to comment.