Files
tbd-station-14/Content.Server/Fluids/Components/SpillableComponent.cs
2022-05-13 17:59:03 +10:00

16 lines
403 B
C#

namespace Content.Server.Fluids.Components;
[RegisterComponent]
public sealed class SpillableComponent : Component
{
[DataField("solution")]
public string SolutionName = "puddle";
/// <summary>
/// Should this item be spilled when worn as clothing?
/// Doesn't count for pockets or hands.
/// </summary>
[DataField("spillWorn")]
public bool SpillWorn = true;
}