From d04a58f7b3e24a963041b59b1d31121d5dc918e5 Mon Sep 17 00:00:00 2001 From: chromiumboy <50505512+chromiumboy@users.noreply.github.com> Date: Sun, 1 Oct 2023 16:08:02 -0500 Subject: [PATCH] Fix prying door hacking protections (#20664) --- Content.Server/Construction/ConstructionSystem.Interactions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index e6c0f039b0..e2e99ad74e 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -9,6 +9,7 @@ using Content.Shared.Construction.EntitySystems; using Content.Shared.Construction.Steps; using Content.Shared.DoAfter; using Content.Shared.Interaction; +using Content.Shared.Prying.Systems; using Content.Shared.Radio.EntitySystems; using Content.Shared.Tools.Components; using Robust.Shared.Containers; @@ -37,7 +38,7 @@ namespace Content.Server.Construction // Event handling. Add your subscriptions here! Just make sure they're all handled by EnqueueEvent. SubscribeLocalEvent(EnqueueEvent, - new []{typeof(AnchorableSystem)}, + new []{typeof(AnchorableSystem), typeof(PryingSystem) }, new []{typeof(EncryptionKeySystem)}); SubscribeLocalEvent(EnqueueEvent); SubscribeLocalEvent(EnqueueEvent); -- 2.51.2