tweak(SolutionTransfer): Raise default max transfer amount. (#29969)

* fix(jugs): Make max and minimum transfer amounts make sense

* fix name

* Better

* Implement bounds checks

* large beaker too

* More logical solution

* Bleh

* remove

* Doesn't make sense yet

WAS MISTAKEN AAAAAAAAAAAAAAD@ @!
This commit is contained in:
Brandon Hu
2024-08-05 22:59:51 +00:00
committed by GitHub
parent f7d8b4e7d4
commit 9bb9e80ede

View File

@@ -29,7 +29,7 @@ public sealed partial class SolutionTransferComponent : Component
/// </summary> /// </summary>
[DataField("maxTransferAmount")] [DataField("maxTransferAmount")]
[ViewVariables(VVAccess.ReadWrite)] [ViewVariables(VVAccess.ReadWrite)]
public FixedPoint2 MaximumTransferAmount { get; set; } = FixedPoint2.New(50); public FixedPoint2 MaximumTransferAmount { get; set; } = FixedPoint2.New(100);
/// <summary> /// <summary>
/// Can this entity take reagent from reagent tanks? /// Can this entity take reagent from reagent tanks?