From bca9f1b92fa01e242c9a06c083e6151415b68135 Mon Sep 17 00:00:00 2001 From: metalgearsloth Date: Tue, 10 Oct 2023 23:23:50 +1100 Subject: [PATCH] Fix shuttle planet FTL overlapping markers --- Content.Server/Parallax/BiomeSystem.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index d54293f5683e..ab66a48b9799 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -553,6 +553,9 @@ private void LoadChunk( 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)) {