From 912f49882597fd93edd7faac63f2fa80ec16bd9e Mon Sep 17 00:00:00 2001 From: Darius <5933805+LeDrascol@users.noreply.github.com> Date: Sun, 8 Jan 2023 18:37:53 +0000 Subject: [PATCH] Fix Adv Toolset sequence break (#277) Changes the Advanced Toolset Implant techweb entry to also require Alien Engineering and Cybernetic Implants. This prevents obtaining alien tool implants before researching tool implants or alien tools. --- modular_sand/code/modules/research/techweb/nodes/all_nodes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_sand/code/modules/research/techweb/nodes/all_nodes.dm b/modular_sand/code/modules/research/techweb/nodes/all_nodes.dm index 09aa866394..303af10462 100644 --- a/modular_sand/code/modules/research/techweb/nodes/all_nodes.dm +++ b/modular_sand/code/modules/research/techweb/nodes/all_nodes.dm @@ -27,7 +27,7 @@ id = "adv_toolset_implant" display_name = "Advanced Toolset Implant" description = "Allows the creation of alien powerful implants for your arms." - prereq_ids = list("alien_bio") + prereq_ids = list("alien_bio", "alien_engi", "adv_cyber_implants") design_ids = list("ci-toolset-adv","ci-surgery-adv") research_costs = list(TECHWEB_POINT_TYPE_GENERIC = 5000)