From 30a24fcdf0c9a3f2fa1cec159f706b574c700cad Mon Sep 17 00:00:00 2001
From: ReeZer2 <63300653+ReeZer2@users.noreply.github.com>
Date: Sat, 10 Aug 2024 12:25:49 +0300
Subject: [PATCH] FIX change transfer amount (#1560)
---
.../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?