]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Fix shuttle planet FTL overlapping markers (#20887)
authormetalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
Tue, 10 Oct 2023 21:33:04 +0000 (08:33 +1100)
committerGitHub <noreply@github.com>
Tue, 10 Oct 2023 21:33:04 +0000 (14:33 -0700)
Content.Server/Parallax/BiomeSystem.cs

index d54293f5683e168550f2d381265ca4c044b2da9c..ab66a48b97995c308465b05377bf8aa64d72857d 100644 (file)
@@ -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))
                     {