From 265feeb061abf04cbf8f402c2fad456e282d1ab2 Mon Sep 17 00:00:00 2001 From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 2 Sep 2024 06:37:17 +0200 Subject: [PATCH] Devmap crew monitor fix (#31677) --- .../DeviceNetwork/Systems/SingletonDeviceNetServerSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/DeviceNetwork/Systems/SingletonDeviceNetServerSystem.cs b/Content.Server/DeviceNetwork/Systems/SingletonDeviceNetServerSystem.cs index d189afc0a0..6c997828fa 100644 --- a/Content.Server/DeviceNetwork/Systems/SingletonDeviceNetServerSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/SingletonDeviceNetServerSystem.cs @@ -63,7 +63,7 @@ public sealed class SingletonDeviceNetServerSystem : EntitySystem last = (uid, server, device); - if (!server.Active) + if (!server.Active || string.IsNullOrEmpty(device.Address)) continue; address = device.Address; -- 2.51.2