Skip to content

Commit

Permalink
Addust why did you mapedit these
Browse files Browse the repository at this point in the history
  • Loading branch information
Oblisk234 committed Jan 23, 2025
1 parent f00c6c9 commit 9b321d1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
7 changes: 1 addition & 6 deletions _maps/RandomRuins/IceRuins/icemoon_surface_syndicate.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -5425,12 +5425,7 @@
/obj/effect/turf_decal/siding/wood{
dir = 9
},
/obj/machinery/photocopier/faxmachine/syndicate{
desc = "Used to send black pages to Nanotrasen stations.";
department = "Unidentified";
name = "Syndicate Fax Machine";
req_access = list("syndicate")
},
/obj/machinery/photocopier/faxmachine/syndicate,
/turf/open/floor/wood,
/area/ruin/syndicate_icemoon/command)
"CQ" = (
Expand Down
6 changes: 1 addition & 5 deletions _maps/RandomRuins/SpaceRuins/listeningstation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -2443,11 +2443,7 @@
dir = 1
},
/obj/effect/turf_decal/tile/red/fourcorners,
/obj/machinery/photocopier/faxmachine/syndicate{
desc = "Used to send black pages to Nanotrasen stations.";
department = "Unidentified";
name = "Syndicate Fax Machine"
},
/obj/machinery/photocopier/faxmachine/syndicate,
/turf/open/floor/plasteel/dark,
/area/ruin/space/has_grav/listeningstation/hallway)
"KS" = (
Expand Down
6 changes: 1 addition & 5 deletions _maps/map_files/generic/CentCom.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -21480,11 +21480,7 @@
dir = 9
},
/obj/structure/table/reinforced,
/obj/machinery/photocopier/faxmachine{
department = "Syndicate";
destination = "Bridge";
hidefromfaxlist = 1
},
/obj/machinery/photocopier/faxmachine/syndicate_command,
/turf/open/floor/plasteel/dark,
/area/centcom/syndicate_mothership)
"crH" = (
Expand Down
14 changes: 14 additions & 0 deletions code/modules/paperwork/faxmachine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -255,5 +255,19 @@ GLOBAL_LIST_EMPTY(adminfaxes)
to_chat(user, span_warning("You short out the security protocols on [src]'s transceiver!"))
return TRUE

///Common syndicate fax machines, comes pre-emagged
/obj/machinery/photocopier/faxmachine/syndicate
department = "Unidentified"
desc = "Used to send black pages to Nanotrasen stations."
name = "Syndicate Fax Machine"
obj_flags = CAN_BE_HIT | EMAGGED
req_access = list(ACCESS_SYNDICATE)

///The fax machine in the Syndicate mothership
/obj/machinery/photocopier/faxmachine/syndicate_command
department = "Syndicate"
desc = "Used for communication between the different echelons of the Syndicate. It has a note on the side reading <i>'DO NOT MOVE'</i>."
destination = "Bridge"
hidefromfaxlist = TRUE
name = "Syndicate Fax Machine"
req_access = list(ACCESS_SYNDICATE)

0 comments on commit 9b321d1

Please sign in to comment.