From edafca7ae088795db39344ab1fb3a1aa556260fa Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 27 Apr 2024 02:45:05 +0200 Subject: [PATCH] [MIRROR] Fixes cooling and anti-disruption RCD upgrades being unavialble for ancient protolathes (#27378) * Fixes cooling and anti-disruption RCD upgrades being unavialble for ancient protolathes (#82719) ## About The Pull Request Makes this upgrades available for ghostroles and such ![image](https://github.com/tgstation/tgstation/assets/8430839/01b4a947-1108-4c2f-86d6-df134e20c14c) ## Why It's Good For The Game Having ability to use RCD faster iskinda good ## Changelog :cl: fix: cooling and anti-disruption RCD upgrades can now be printed in ancient protolathes /:cl: * Fixes cooling and anti-disruption RCD upgrades being unavialble for ancient protolathes --------- Co-authored-by: Iajret <8430839+Iajret@users.noreply.github.com> --- code/modules/research/designs/tool_designs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/research/designs/tool_designs.dm b/code/modules/research/designs/tool_designs.dm index ee1e09b1143..392921795b9 100644 --- a/code/modules/research/designs/tool_designs.dm +++ b/code/modules/research/designs/tool_designs.dm @@ -137,7 +137,7 @@ name = "RCD anti disruption designs upgrade" desc = "Prevents interruption of RCD construction and deconstruction." id = "rcd_upgrade_anti_interrupt" - build_type = PROTOLATHE + build_type = PROTOLATHE | AWAY_LATHE materials = list( /datum/material/iron = SHEET_MATERIAL_AMOUNT * 2.5, /datum/material/glass = SHEET_MATERIAL_AMOUNT * 1.25, @@ -154,7 +154,7 @@ name = "RCD cooling upgrade" desc = "Allows the RCD to more quickly perform multiple actions at once." id = "rcd_upgrade_cooling" - build_type = PROTOLATHE + build_type = PROTOLATHE | AWAY_LATHE materials = list( /datum/material/iron = SHEET_MATERIAL_AMOUNT * 2, /datum/material/glass = SHEET_MATERIAL_AMOUNT,