From 33f172d5e0ea98c0926215b6ebee42ebc49d52ad Mon Sep 17 00:00:00 2001 From: nikothedude <59709059+nikothedude@users.noreply.github.com> Date: Fri, 29 Sep 2023 21:20:55 -0400 Subject: [PATCH] Gives sci departmental order consoles access to canstiers & materials (#78604) ## About The Pull Request Title. ## Why It's Good For The Game ![image](https://github.com/tgstation/tgstation/assets/59709059/46558829-1a9e-433f-b0e2-cd6664352559) Sci is the most mat-hungry department of the entire game, maybe surpassed by engi but probably not. Toxins can also very much use this for obvious reasons. More reasons to use the console = more times sci uses it = more money for cargo = more inter-departmental action when cargo actually has to deliver crates to sci. ## Changelog :cl: balance: Sci now has access to the materials & canisters section in their departmental order console /:cl: --- code/modules/cargo/department_order.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/cargo/department_order.dm b/code/modules/cargo/department_order.dm index 6658019f7f1..b1573c97a5b 100644 --- a/code/modules/cargo/department_order.dm +++ b/code/modules/cargo/department_order.dm @@ -142,7 +142,7 @@ GLOBAL_LIST_INIT(department_order_cooldowns, list( if(GLOB.areas_by_type[delivery_area_type]) chosen_delivery_area = delivery_area_type break - + if(SSshuttle.supply.get_order_count(pack) == OVER_ORDER_LIMIT) playsound(src, 'sound/machines/buzz-sigh.ogg', 50, FALSE) say("ERROR: No more then [CARGO_MAX_ORDER] of any pack may be ordered at once") @@ -194,7 +194,7 @@ GLOBAL_LIST_INIT(department_order_cooldowns, list( department_delivery_areas = list(/area/station/science/research) override_access = ACCESS_RD req_one_access = REGION_ACCESS_RESEARCH - dep_groups = list("Science", "Livestock") + dep_groups = list("Science", "Livestock", "Canisters & Materials") /obj/machinery/computer/department_orders/security name = "security order console"