From b40980b0c12491fc3f3e3eb97b416d169c4b755d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 28 Feb 2018 19:31:38 -0600 Subject: [PATCH] [MIRROR] Fixes hidden node unlocking (#5731) * Merge pull request #36013 from kevinz000/techwebs_hotfix_1 Fixes hidden node unlocking * Fixes hidden node unlocking --- code/modules/research/techweb/_techweb.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/research/techweb/_techweb.dm b/code/modules/research/techweb/_techweb.dm index d59dea55d3..8a7c0eab6c 100644 --- a/code/modules/research/techweb/_techweb.dm +++ b/code/modules/research/techweb/_techweb.dm @@ -158,6 +158,7 @@ boosted_nodes[N] = max(boosted_nodes[N], N.boost_item_paths[itempath]) if(N.autounlock_by_boost) hidden_nodes -= N.id + update_node_status(N) return TRUE /datum/techweb/proc/update_tiers(datum/techweb_node/base)