Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
lower health penalty for clipping (new-frontiers-14#1204)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheackraze authored Apr 8, 2024
1 parent 570d4ab commit 4bc97cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Botany/Systems/PlantHolderSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ private void OnInteractUsing(Entity<PlantHolderComponent> entity, ref InteractUs
return;
}

component.Health -= (_random.Next(3, 5) * 5);
component.Health -= (_random.Next(3, 5) * 2);
component.Seed.Unique = false;
var seed = _botany.SpawnSeedPacket(component.Seed, Transform(args.User).Coordinates, args.User, component.Health);
_randomHelper.RandomOffset(seed, 0.25f);
Expand Down

0 comments on commit 4bc97cb

Please sign in to comment.