]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Make Seed Non-Unique on Sample (#42527)
authorahandleman <ahandleman@wustl.edu>
Tue, 20 Jan 2026 01:25:41 +0000 (19:25 -0600)
committerGitHub <noreply@github.com>
Tue, 20 Jan 2026 01:25:41 +0000 (01:25 +0000)
Make Seed Unique on Sample

Content.Server/Botany/Systems/PlantHolderSystem.cs

index 3959ffc47f41c814fc2409059410b41d0f342cd4..5fb2461133492463556f8f44bef48124088239ce 100644 (file)
@@ -303,6 +303,7 @@ public sealed class PlantHolderSystem : EntitySystem
             {
                 healthOverride = component.Health;
             }
+            component.Seed.Unique = false;
             var packetSeed = component.Seed;
             var seed = _botany.SpawnSeedPacket(packetSeed, Transform(args.User).Coordinates, args.User, healthOverride);
             _randomHelper.RandomOffset(seed, 0.25f);