From ffe9feeb99bca1063a38767dc9156f9445cd7ecf Mon Sep 17 00:00:00 2001 From: ReeZer2 Date: Fri, 9 Aug 2024 22:33:14 +0300 Subject: [PATCH] FIX change transfer amount --- .../Chemistry/Components/SolutionTransferComponent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs index 86d8da9d3d9254..ace4a051f4f137 100644 --- a/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs +++ b/Content.Shared/Chemistry/Components/SolutionTransferComponent.cs @@ -22,14 +22,14 @@ public sealed partial class SolutionTransferComponent : Component /// [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 /// /// The maximum amount of solution that can be transferred at once from this solution. /// [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 /// /// Can this entity take reagent from reagent tanks?