From 0146f9ccf9aee45a194439291d78b3d223ead8bf Mon Sep 17 00:00:00 2001 From: checkraze Date: Sun, 3 Mar 2024 19:28:52 -0500 Subject: [PATCH] un nerf botany a bit --- Content.Server/Botany/Systems/PlantHolderSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Botany/Systems/PlantHolderSystem.cs b/Content.Server/Botany/Systems/PlantHolderSystem.cs index 0f54fd0da50..525e4972492 100644 --- a/Content.Server/Botany/Systems/PlantHolderSystem.cs +++ b/Content.Server/Botany/Systems/PlantHolderSystem.cs @@ -287,7 +287,7 @@ private void OnInteractUsing(Entity entity, ref InteractUs return; } - component.Health -= (_random.Next(3, 5) * 10); + component.Health -= (_random.Next(3, 5) * 5); component.Seed.Unique = false; var seed = _botany.SpawnSeedPacket(component.Seed, Transform(args.User).Coordinates, args.User, component.Health); _randomHelper.RandomOffset(seed, 0.25f);