From dba5a3798d0210a15ac1c0db791cb14b4c873af4 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 1 Aug 2021 12:41:32 +0200 Subject: [PATCH] [MIRROR] Servers now have USB ports (#7285) * Gives servers a USB port (#60564) * Servers now have USB ports Co-authored-by: SmArtKar <44720187+SmArtKar@users.noreply.github.com> --- code/modules/wiremod/shell/server.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/wiremod/shell/server.dm b/code/modules/wiremod/shell/server.dm index d63deb18f1e..5e5a44f8970 100644 --- a/code/modules/wiremod/shell/server.dm +++ b/code/modules/wiremod/shell/server.dm @@ -15,7 +15,7 @@ /obj/structure/server/Initialize() . = ..() - AddComponent(/datum/component/shell, null, SHELL_CAPACITY_VERY_LARGE, SHELL_FLAG_REQUIRE_ANCHOR) + AddComponent(/datum/component/shell, null, SHELL_CAPACITY_VERY_LARGE, SHELL_FLAG_REQUIRE_ANCHOR|SHELL_FLAG_USB_PORT) /obj/structure/server/wrench_act(mob/living/user, obj/item/tool) set_anchored(!anchored)