From 249d97e3876feff5e893a96564b799fa65906e6d Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 13 Sep 2022 06:08:45 +0200 Subject: [PATCH] [MIRROR] Adds fax machines to the supply shuttle blacklist [MDB IGNORE] (#16186) * Adds fax machines to the supply shuttle blacklist (#69766) Fax machines being present on the supply shuttle creates a risk that there may be ways to send other blacklisted items to CentCom in order to gain access. The neatest and safest solution to this broad realm of potential exploits is to keep the fax machine from being able to get there in the first place. * Adds fax machines to the supply shuttle blacklist Co-authored-by: Thunder12345 --- code/modules/cargo/orderconsole.dm | 2 +- code/modules/shuttle/supply.dm | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/cargo/orderconsole.dm b/code/modules/cargo/orderconsole.dm index 5a733e89e69..03538bc5ac8 100644 --- a/code/modules/cargo/orderconsole.dm +++ b/code/modules/cargo/orderconsole.dm @@ -15,7 +15,7 @@ var/self_paid = FALSE var/safety_warning = "For safety and ethical reasons, the automated supply shuttle cannot transport live organisms, \ human remains, classified nuclear weaponry, mail, undelivered departmental order crates, syndicate bombs, \ - homing beacons, unstable eigenstates, or machinery housing any form of artificial intelligence." + homing beacons, unstable eigenstates, fax machines, or machinery housing any form of artificial intelligence." var/blockade_warning = "Bluespace instability detected. Shuttle movement impossible." /// radio used by the console to send messages on supply channel var/obj/item/radio/headset/radio diff --git a/code/modules/shuttle/supply.dm b/code/modules/shuttle/supply.dm index 76bf26d4533..e54479e13d6 100644 --- a/code/modules/shuttle/supply.dm +++ b/code/modules/shuttle/supply.dm @@ -31,7 +31,8 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list( /obj/item/mail, /obj/machinery/camera, /obj/item/gps, - /obj/structure/checkoutmachine + /obj/structure/checkoutmachine, + /obj/machinery/fax ))) /// How many goody orders we can fit in a lockbox before we upgrade to a crate