From c2b9ae595a8fac747e01c19325b350ece07a793e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 26 Sep 2020 16:21:17 +0200 Subject: [PATCH] [MIRROR] Fixes a runtime with borg tablets when borgs get created. (#994) * Fixes a runtime with borg tablets when borgs get created. (#53953) * Fixes a runtime with borg tablets when borgs get created. Co-authored-by: zxaber <37497534+zxaber@users.noreply.github.com> --- code/modules/mob/living/silicon/robot/robot.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index fb5b4d84176..c34a42a35ef 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -134,6 +134,8 @@ if(ispath(cell)) cell = new cell(src) + create_modularInterface() + if(lawupdate) make_laws() if(!TryConnectToAI()) @@ -174,7 +176,6 @@ aicamera = new/obj/item/camera/siliconcam/robot_camera(src) toner = tonermax diag_hud_set_borgcell() - create_modularInterface() logevent("System brought online.") /mob/living/silicon/robot/proc/create_modularInterface()