From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Tue, 10 Oct 2023 21:33:04 +0000 (+1100) Subject: Fix shuttle planet FTL overlapping markers (#20887) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=83062e39b041fdad8d936f0acc681e6c6eecb6c5;p=space-station-14.git Fix shuttle planet FTL overlapping markers (#20887) --- diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index d54293f568..ab66a48b97 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -553,6 +553,9 @@ public sealed partial class BiomeSystem : SharedBiomeSystem foreach (var node in nodes) { + if (modified.Contains(node)) + continue; + // Need to ensure the tile under it has loaded for anchoring. if (TryGetBiomeTile(node, component.Layers, component.Noise, grid, out var tile)) {