From 88877ff1dab9ad29ab5322eae80b161b091bd5df Mon Sep 17 00:00:00 2001 From: ahandleman Date: Mon, 19 Jan 2026 19:25:41 -0600 Subject: [PATCH] Make Seed Non-Unique on Sample (#42527) Make Seed Unique on Sample --- Content.Server/Botany/Systems/PlantHolderSystem.cs | 1 + 1 file changed, 1 insertion(+) 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); -- 2.52.0