From 411aea04d0420f1271cb3d0c2be21d28cfc5edbc Mon Sep 17 00:00:00 2001 From: Roxy <75404941+TealSeer@users.noreply.github.com> Date: Wed, 19 Feb 2025 11:06:40 -0600 Subject: [PATCH] Fix missing utility borg upgrades (#3124) ## About The Pull Request Add missing parent call to override ## Why It's Good For The Game Fixes #3120 ## Proof Of Testing
Screenshots/Videos ![image](https://github.com/user-attachments/assets/ec54a8e0-f66f-4a46-b3f3-a9015c895c11)
## Changelog :cl: fix: fixed the utility cyborg upgrades node missing stuff /:cl: --- modular_zubbers/code/modules/research/techweb/all_nodes.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/modular_zubbers/code/modules/research/techweb/all_nodes.dm b/modular_zubbers/code/modules/research/techweb/all_nodes.dm index b1df92aaae7..d84270a2d24 100644 --- a/modular_zubbers/code/modules/research/techweb/all_nodes.dm +++ b/modular_zubbers/code/modules/research/techweb/all_nodes.dm @@ -97,6 +97,7 @@ ) /datum/techweb_node/borg_utility/New() + . = ..() design_ids -= list( "borg_upgrade_expand" // Moved to default robotics, always available. It provides no practical benefit so it shouldn't be here )