[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

🆑
fix: AIs can actually connect to circuits with MMI components and BORIS
modules inserted.
/🆑

Co-authored-by: Afevis <ShizCalev@users.noreply.github.com>
This commit is contained in:
Y0SH1M4S73R
2025-10-07 04:03:47 +00:00
committed by GitHub
co-authored by Afevis
parent 93da7d052a
commit 74e30daa5d
@@ -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)