From 11e56c5f0509c49244ce41762e657002514c7dce Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sun, 1 Aug 2021 07:11:06 +0300 Subject: [PATCH] Gives servers a USB port (#60564) --- 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)