From 36e452730a2c39c4ae716d656b8bb96321deb681 Mon Sep 17 00:00:00 2001 From: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Date: Fri, 14 Jan 2022 02:39:23 -0500 Subject: [PATCH] Fixes ERT cameras floating in place when in a bag (#17321) --- code/modules/clothing/spacesuits/ert.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/ert.dm b/code/modules/clothing/spacesuits/ert.dm index 535cd7f0435..1aa04aa51fc 100644 --- a/code/modules/clothing/spacesuits/ert.dm +++ b/code/modules/clothing/spacesuits/ert.dm @@ -7,7 +7,7 @@ item_color = "ert_commander" armor = list(MELEE = 45, BULLET = 25, LASER = 30, ENERGY = 10, BOMB = 25, BIO = 100, RAD = 50, FIRE = 80, ACID = 80) resistance_flags = FIRE_PROOF - var/obj/machinery/camera/camera + var/obj/machinery/camera/portable/camera var/has_camera = TRUE strip_delay = 130 @@ -32,7 +32,7 @@ /obj/item/clothing/head/helmet/space/hardsuit/ert/proc/register_camera(mob/wearer) if(camera || !has_camera) return - camera = new /obj/machinery/camera(src) + camera = new /obj/machinery/camera/portable(src) camera.network = list("ERT") GLOB.cameranet.removeCamera(camera) camera.c_tag = wearer.name