From 5ab4e151c5598a84851d1df2e8fa928973107cea Mon Sep 17 00:00:00 2001 From: Zergspower Date: Tue, 1 Nov 2022 16:06:48 -0500 Subject: [PATCH] Fix for the missing Exofab modules for mining borgs (#70502) When the big nice rework went through i think an oversight happened and the PKA upgrades were lost to the void even though they could be researched, this just re-adds them back to the exofab. The values were taken from pre-change so nothing really changed from a cost/time perspective. --- code/modules/research/designs/mining_designs.dm | 8 ++++---- code/modules/research/techweb/all_nodes.dm | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/code/modules/research/designs/mining_designs.dm b/code/modules/research/designs/mining_designs.dm index d964de0e3da..4f6d3668c0d 100644 --- a/code/modules/research/designs/mining_designs.dm +++ b/code/modules/research/designs/mining_designs.dm @@ -123,7 +123,7 @@ departmental_flags = DEPARTMENT_BITFLAG_CARGO /datum/design/damage_mod/borg - id = "damagemod_b" + id = "borg_upgrade_damagemod" build_type = MECHFAB category = list( RND_CATEGORY_MECHFAB_CYBORG_MODULES + RND_SUBCATEGORY_MECHFAB_CYBORG_MODULES_MINING @@ -143,7 +143,7 @@ departmental_flags = DEPARTMENT_BITFLAG_CARGO /datum/design/cooldown_mod/borg - id = "cooldownmod_b" + id = "borg_upgrade_cooldownmod" build_type = MECHFAB category = list( RND_CATEGORY_MECHFAB_CYBORG_MODULES + RND_SUBCATEGORY_MECHFAB_CYBORG_MODULES_MINING @@ -163,7 +163,7 @@ departmental_flags = DEPARTMENT_BITFLAG_CARGO /datum/design/range_mod/borg - id = "rangemod_b" + id = "borg_upgrade_rangemod" build_type = MECHFAB category = list( RND_CATEGORY_MECHFAB_CYBORG_MODULES + RND_SUBCATEGORY_MECHFAB_CYBORG_MODULES_MINING @@ -183,7 +183,7 @@ departmental_flags = DEPARTMENT_BITFLAG_CARGO /datum/design/hyperaccelerator/borg - id = "hypermod_b" + id = "borg_upgrade_hypermod" build_type = MECHFAB category = list( RND_CATEGORY_MECHFAB_CYBORG_MODULES + RND_SUBCATEGORY_MECHFAB_CYBORG_MODULES_MINING diff --git a/code/modules/research/techweb/all_nodes.dm b/code/modules/research/techweb/all_nodes.dm index aaea5328f9d..edd500039da 100644 --- a/code/modules/research/techweb/all_nodes.dm +++ b/code/modules/research/techweb/all_nodes.dm @@ -942,6 +942,7 @@ "borg_upgrade_holding", "borg_upgrade_lavaproof", "borg_upgrade_rped", + "borg_upgrade_hypermod", ) research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2000) @@ -1338,17 +1339,20 @@ description = "Better than Efficiency V." prereq_ids = list("engineering", "basic_plasma") design_ids = list( + "borg_upgrade_cooldownmod", + "borg_upgrade_damagemod", + "borg_upgrade_rangemod", "cargoexpress", "cooldownmod", "damagemod", "drill", + "mecha_kineticgun", "mining_equipment_vendor", "ore_redemption", "plasmacutter", "rangemod", "superresonator", "triggermod", - "mecha_kineticgun", )//e a r l y g a m e) research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 2500)