Stop mop buckets from spilling when you push them (#26706)

This commit is contained in:
Vasilis
2024-04-04 10:39:54 +02:00
committed by GitHub
parent f5d9d3c458
commit d4982bad31
3 changed files with 20 additions and 0 deletions

View File

@@ -29,4 +29,10 @@ public sealed partial class SpillableComponent : Component
/// </summary>
[DataField]
public FixedPoint2 MaxMeleeSpillAmount = FixedPoint2.New(20);
/// <summary>
/// Should this item be spilled when thrown?
/// </summary>
[DataField]
public bool SpillWhenThrown = true;
}