]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Logic Gate Compatibility with Non-Logic Signals bugfix (#33792)
authorCentronias <me@centronias.com>
Thu, 19 Dec 2024 11:31:13 +0000 (03:31 -0800)
committerGitHub <noreply@github.com>
Thu, 19 Dec 2024 11:31:13 +0000 (12:31 +0100)
:)

Content.Server/DeviceLinking/Systems/LogicGateSystem.cs

index 1280ecd5d1197fd3a2b795fc250fa6e9051b5678..e6a5b37c273c1ee654844e83f561e8e539760a8e 100644 (file)
@@ -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