From ca09471e195f7c168b4c8ad54380e7c1096c45c2 Mon Sep 17 00:00:00 2001 From: RatFromTheJungle <62520989+RatFromTheJungle@users.noreply.github.com> Date: Sat, 30 Nov 2024 19:35:22 -0500 Subject: [PATCH 1/2] fixes the mining drill (implant) addition removing all the other options in the adv_mining techtree addon (#4644) Update medical_nodes.dm --- modular_nova/modules/implants/code/medical_nodes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_nova/modules/implants/code/medical_nodes.dm b/modular_nova/modules/implants/code/medical_nodes.dm index 9f66ebc36b5..b835b27472d 100644 --- a/modular_nova/modules/implants/code/medical_nodes.dm +++ b/modular_nova/modules/implants/code/medical_nodes.dm @@ -42,7 +42,7 @@ research_costs = list(TECHWEB_POINT_TYPE_GENERIC = TECHWEB_TIER_1_POINTS) /datum/techweb_node/mining_adv/New() //Here for the integrated drill augments. - design_ids = list( - "ci-drill-diamond" + design_ids += list( + "ci-drill-diamond", ) return ..() From 984d3e5ac1666ec566e77f57fa42b83a4f2c83c4 Mon Sep 17 00:00:00 2001 From: StealsThePRs Date: Sun, 1 Dec 2024 03:36:16 +0300 Subject: [PATCH 2/2] [MIRROR] fixes the mining drill (implant) addition removing all the other options in the adv_mining techtree addon