From: Errant <35878406+Errant-4@users.noreply.github.com> Date: Mon, 2 Sep 2024 04:37:17 +0000 (+0200) Subject: Devmap crew monitor fix (#31677) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=265feeb061abf04cbf8f402c2fad456e282d1ab2;p=space-station-14.git Devmap crew monitor fix (#31677) --- 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;