From 128721ee4ef8ea061a45c3c58d471a67c7c40961 Mon Sep 17 00:00:00 2001 From: Centronias Date: Thu, 19 Dec 2024 03:31:13 -0800 Subject: [PATCH] Logic Gate Compatibility with Non-Logic Signals bugfix (#33792) :) --- Content.Server/DeviceLinking/Systems/LogicGateSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs index 1280ecd5d1..e6a5b37c27 100644 --- a/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs +++ b/Content.Server/DeviceLinking/Systems/LogicGateSystem.cs @@ -44,7 +44,7 @@ public sealed class LogicGateSystem : EntitySystem } if (comp.StateB == SignalState.Momentary) { - comp.StateB = SignalState.High; + comp.StateB = SignalState.Low; } // output most likely changed so update it