Skip to content

Commit

Permalink
[MIRROR] Gives Cargo its own departmental wires [MDB IGNORE] (#25232)
Browse files Browse the repository at this point in the history
* Gives Cargo its own departmental wires (#79912)

## About The Pull Request

Gives Cargo its own area wires, instead of having them use the same wire
layouts as the Service areas.
## Why It's Good For The Game

Back when the original PR (#52563) was made, cargo was a weird subset of
"quartermaster" areas that must have just been swept into service. I
looked into it and to my surprise cargo just wasn't ever mentioned in
it. When the QM areas were converted to cargo areas, there weren't any
cargo wires so they probably just inherited the service wires and were
forgotten about?

Now, with the QM being a head and cargo being a more defined department
than ever, it shall receive the distinction of being called "its own
department" in the worst way possible -- by giving it its own wires.
## Changelog
:cl: Rhials
qol: Gives Cargo areas its own wire layout, instead of having it use the
same wires as Service areas.
/:cl:

* Gives Cargo its own departmental wires

---------

Co-authored-by: Rhials <[email protected]>
Co-authored-by: Bloop <[email protected]>
  • Loading branch information
3 people authored and FFMirrorBot committed Nov 25, 2023
1 parent 4eab42f commit dc98863
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions code/datums/wires/airlock.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@
dictionary_key = /datum/wires/airlock/ai
proper_name = "AI Airlock"

/datum/wires/airlock/cargo
dictionary_key = /datum/wires/airlock/cargo
proper_name = "Cargo Airlock"

/datum/wires/airlock/New(atom/holder)
wires = list(
WIRE_AI,
Expand Down
2 changes: 1 addition & 1 deletion code/game/area/areas/station/cargo.dm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/area/station/cargo
name = "Quartermasters"
icon_state = "quart"
airlock_wires = /datum/wires/airlock/service
airlock_wires = /datum/wires/airlock/cargo
sound_environment = SOUND_AREA_STANDARD_STATION

/area/station/cargo/sorting
Expand Down

0 comments on commit dc98863

Please sign in to comment.