Custom transfer amount to hydroponic trays (#5833)

This commit is contained in:
Mariner102
2021-12-21 19:52:59 -07:00
committed by GitHub
parent bf292a84a0
commit 4257e8e731
4 changed files with 38 additions and 18 deletions

View File

@@ -1,6 +1,7 @@
using Robust.Shared.GameObjects;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using Robust.Shared.ViewVariables;
using Content.Shared.FixedPoint;
namespace Content.Server.Chemistry.Components.SolutionManager
{
@@ -21,5 +22,13 @@ namespace Content.Server.Chemistry.Components.SolutionManager
[DataField("solution")]
public string Solution { get; set; } = "default";
/// <summary>
/// The maximum amount that can be transferred to the solution at once
/// </summary>
[DataField("maxRefill")]
[ViewVariables(VVAccess.ReadWrite)]
public FixedPoint2? MaxRefill { get; set; } = null;
}
}