From: ahandleman Date: Tue, 20 Jan 2026 01:25:41 +0000 (-0600) Subject: Make Seed Non-Unique on Sample (#42527) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=88877ff1dab9ad29ab5322eae80b161b091bd5df;p=space-station-14.git Make Seed Non-Unique on Sample (#42527) Make Seed Unique on Sample --- diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 3959ffc47f..5fb2461133 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -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);