From 546e70730e37e92ae4efea44f16a07830f15f613 Mon Sep 17 00:00:00 2001 From: vulppine Date: Mon, 22 Aug 2022 17:45:29 -0700 Subject: [PATCH] or instead of and --- Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs index b8d7be8b26..d6251048ba 100644 --- a/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AtmosMonitoringSystem.cs @@ -287,7 +287,7 @@ namespace Content.Server.Atmos.Monitor.Systems // if the state of the current air doesn't match the last alarm state, // we update the state - if (state != monitor.LastAlarmState && !alarmTypes.SetEquals(monitor.TrippedThresholds)) + if (state != monitor.LastAlarmState || !alarmTypes.SetEquals(monitor.TrippedThresholds)) { Alert(uid, state, alarmTypes, monitor); }