Skip to content

Commit

Permalink
FIX change transfer amount (#1560)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeZer2 authored Aug 10, 2024
1 parent 5e1f0dd commit 30a24fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ public sealed partial class SolutionTransferComponent : Component
/// </summary>
[DataField("minTransferAmount")]
[ViewVariables(VVAccess.ReadWrite)]
public FixedPoint2 MinimumTransferAmount { get; set; } = FixedPoint2.New(5);
public FixedPoint2 MinimumTransferAmount { get; set; } = FixedPoint2.New(1); // ss220 change amount transfer fix

/// <summary>
/// The maximum amount of solution that can be transferred at once from this solution.
/// </summary>
[DataField("maxTransferAmount")]
[ViewVariables(VVAccess.ReadWrite)]
public FixedPoint2 MaximumTransferAmount { get; set; } = FixedPoint2.New(50);
public FixedPoint2 MaximumTransferAmount { get; set; } = FixedPoint2.New(1000); // ss220 change amount transfer fix

/// <summary>
/// Can this entity take reagent from reagent tanks?
Expand Down

0 comments on commit 30a24fc

Please sign in to comment.