Vapor tweaks (#9638)

This commit is contained in:
metalgearsloth
2022-07-15 12:45:21 +10:00
committed by GitHub
parent 786c8a7c79
commit 9608005db0
4 changed files with 36 additions and 59 deletions

View File

@@ -5,17 +5,15 @@ using Robust.Shared.Map;
namespace Content.Server.Chemistry.Components
{
[RegisterComponent]
internal sealed class VaporComponent : SharedVaporComponent
public sealed class VaporComponent : Component
{
public const string SolutionName = "vapor";
[ViewVariables]
[DataField("transferAmount")]
internal FixedPoint2 TransferAmount = FixedPoint2.New(0.5);
public FixedPoint2 TransferAmount = FixedPoint2.New(0.5);
internal bool Reached;
internal float ReactTimer;
internal float Timer;
internal MapCoordinates Target;
internal bool Active;
internal float AliveTime;
public float ReactTimer;
public bool Active;
}
}