From d16ae4e30e5dcc1f385e727a56ca5ca16f4d5e3e Mon Sep 17 00:00:00 2001 From: Farie82 Date: Fri, 17 Dec 2021 11:10:11 +0100 Subject: [PATCH] Wakes borgs up when they get their cell added. Fixes a bug from #17226 (#17239) --- code/modules/mob/living/silicon/robot/component.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/component.dm b/code/modules/mob/living/silicon/robot/component.dm index c3c35180305..05d8a57f900 100644 --- a/code/modules/mob/living/silicon/robot/component.dm +++ b/code/modules/mob/living/silicon/robot/component.dm @@ -127,9 +127,9 @@ max_damage = 50 /datum/robot_component/cell/install(obj/item/stock_parts/cell/C) - ..() external_type = C.type // Update the cell component's `external_type` to the path of new cell owner.cell = C + ..() /datum/robot_component/cell/uninstall() ..()