From: Centronias Date: Thu, 19 Dec 2024 11:31:13 +0000 (-0800) Subject: Logic Gate Compatibility with Non-Logic Signals bugfix (#33792) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=128721ee4ef8ea061a45c3c58d471a67c7c40961;p=space-station-14.git Logic Gate Compatibility with Non-Logic Signals bugfix (#33792) :) --- 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