From f42455cd40eca37a4f46068c24dd8279a7bde757 Mon Sep 17 00:00:00 2001 From: Alan Date: Mon, 6 Oct 2025 13:24:32 -0400 Subject: [PATCH] Notify cargo of incoming secondary goal crates. (#30577) --- code/modules/station_goals/secondary/secondary_goal.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/station_goals/secondary/secondary_goal.dm b/code/modules/station_goals/secondary/secondary_goal.dm index 10386eda882..f5d0e6ed2e2 100644 --- a/code/modules/station_goals/secondary/secondary_goal.dm +++ b/code/modules/station_goals/secondary/secondary_goal.dm @@ -49,6 +49,7 @@ message_parts += "All requested materials must be properly labeled for transport, or be inside a properly-labeled container. You can configure a hand labeler to create suitable labels by by swiping your ID card on it." if(should_send_crate) message_parts += "For your convenience, a pre-labeled personal crate will be sent to your cargo department." + send_requests_console_message("A new secondary goal crate for [requester] from [department] is ready to ship with your next order.", "Procurement Office", "Cargo Bay", "Stamped with the Central Command rubber stamp.", "Verified by A.L.I.C.E (CentCom AI)", RQ_HIGHPRIORITY) send_requests_console_message(message_parts, "Procurement Office", department, "Stamped with the Central Command rubber stamp.", "Verified by A.L.I.C.E (CentCom AI)", RQ_HIGHPRIORITY) if(department != "Captain's Desk") send_requests_console_message(message_parts, "Procurement Office", "Captain's Desk", "Stamped with the Central Command rubber stamp.", "Verified by A.L.I.C.E (CentCom AI)", RQ_NORMALPRIORITY)