From 74e30daa5dbcc9b8c88be9d14cc149dfc99a422f Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Tue, 7 Oct 2025 00:03:47 -0400 Subject: [PATCH] [NO GBP] Fixes AIs not being able to connect to circuit boris shells (#93314) ## About The Pull Request I accidentally added the ref string for the circuit component into the boris_shell_container component's list instead of the circuit component itself. ## Why It's Good For The Game Fixes an issue that was reported on the discord but not on the github. ## Changelog :cl: fix: AIs can actually connect to circuits with MMI components and BORIS modules inserted. /:cl: Co-authored-by: Afevis --- .../wiremod/dcs_components/component_boris_circuit_container.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/wiremod/dcs_components/component_boris_circuit_container.dm b/code/modules/wiremod/dcs_components/component_boris_circuit_container.dm index c64437d21c0..81e95099101 100644 --- a/code/modules/wiremod/dcs_components/component_boris_circuit_container.dm +++ b/code/modules/wiremod/dcs_components/component_boris_circuit_container.dm @@ -34,7 +34,7 @@ var/obj/item/circuit_component/mmi/source_comp = locate(source) if(!istype(source_comp)) return COMPONENT_INCOMPATIBLE - LAZYADD(mmi_components, source) + LAZYADD(mmi_components, source_comp) /datum/component/boris_circuit_container/on_source_remove(source) var/obj/item/circuit_component/mmi/source_comp = locate(source)