From 51577e86957a88995bfea1028f13b1cf42fd0a66 Mon Sep 17 00:00:00 2001 From: joep van der velden Date: Fri, 2 Oct 2020 21:38:37 +0200 Subject: [PATCH] Fixes camera bugs --- code/game/objects/items/devices/camera_bug.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/camera_bug.dm b/code/game/objects/items/devices/camera_bug.dm index 2305eabb654..1811de506bb 100644 --- a/code/game/objects/items/devices/camera_bug.dm +++ b/code/game/objects/items/devices/camera_bug.dm @@ -10,11 +10,14 @@ throw_range = 20 origin_tech = "syndicate=1;engineering=3" /// Integrated camera console to serve UI data - var/obj/machinery/computer/security/integrated_console + var/obj/machinery/computer/security/camera_bug/integrated_console + +/obj/machinery/computer/security/camera_bug + use_power = NO_POWER_USE /obj/item/camera_bug/Initialize(mapload) . = ..() - integrated_console = new + integrated_console = new(src) integrated_console.parent = src integrated_console.network = list("SS13")