From a67fa6f6d5196ef988bd86525a0606edb8f20f80 Mon Sep 17 00:00:00 2001 From: Jona-K <63449674+Katzenminer@users.noreply.github.com> Date: Mon, 9 Jun 2025 07:56:18 +0200 Subject: [PATCH] Made sure only the intent changes are present (#1408) --- .../_CP14/Demiplane/CP14DemiplaneSystem.Stabilization.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Stabilization.cs b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Stabilization.cs index e80a1ea0e9..a89bfd7e76 100644 --- a/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Stabilization.cs +++ b/Content.Server/_CP14/Demiplane/CP14DemiplaneSystem.Stabilization.cs @@ -1,6 +1,7 @@ using Content.Server.Body.Systems; using Content.Shared._CP14.Demiplane.Components; using Content.Shared.Mobs.Systems; +using Content.Shared.SSDIndicator; namespace Content.Server._CP14.Demiplane; @@ -50,7 +51,8 @@ public sealed partial class CP14DemiplaneSystem if (stabilizedMaps.Contains(map.Value)) continue; - + if (TryComp(uid, out SSDIndicatorComponent? ssd) && ssd.IsSSD) + continue; stabilizedMaps.Add(map.Value); }