From f55f57841c627c6dcb5e2d02d2d519a407ecb53e Mon Sep 17 00:00:00 2001 From: RandomGamer123 <31096837+RandomGamer123@users.noreply.github.com> Date: Thu, 3 Feb 2022 00:41:58 -0500 Subject: [PATCH] Add undelivered departmental order crates and syndicate bombs to the cannot be delivered message. (#64606) --- code/modules/cargo/orderconsole.dm | 6 +++--- .../file_system/programs/budgetordering.dm | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/modules/cargo/orderconsole.dm b/code/modules/cargo/orderconsole.dm index 7f88c7a83f1..c8e302ee8ec 100644 --- a/code/modules/cargo/orderconsole.dm +++ b/code/modules/cargo/orderconsole.dm @@ -13,9 +13,9 @@ var/can_approve_requests = TRUE var/contraband = FALSE 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, \ - homing beacons, unstable eigenstates or machinery housing any form of artificial intelligence." + 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." 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/modular_computers/file_system/programs/budgetordering.dm b/code/modules/modular_computers/file_system/programs/budgetordering.dm index a5cb1f8cf02..d128399804b 100644 --- a/code/modules/modular_computers/file_system/programs/budgetordering.dm +++ b/code/modules/modular_computers/file_system/programs/budgetordering.dm @@ -17,9 +17,9 @@ ///Can this console approve purchase requests? var/can_approve_requests = FALSE ///What do we say when the shuttle moves with living beings on it. - var/safety_warning = "For safety and ethical reasons, the automated supply shuttle \ - cannot transport live organisms, human remains, classified nuclear weaponry, mail, \ - homing beacons, unstable eigenstates or machinery housing any form of artificial intelligence." + 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." ///If you're being raided by pirates, what do you tell the crew? var/blockade_warning = "Bluespace instability detected. Shuttle movement impossible." ///The name of the shuttle template being used as the cargo shuttle. 'supply' is default and contains critical code. Don't change this unless you know what you're doing.