Fix space wind layer removal (#33888)

* Fix space wind layer removal

* apply review

* Update MovedByPressureComponent.cs

* remove this
This commit is contained in:
lzk
2025-04-19 00:52:09 +02:00
committed by GitHub
parent fbf7dd9fba
commit b96fa3dcfa
2 changed files with 18 additions and 4 deletions

View File

@@ -27,5 +27,11 @@ public sealed partial class MovedByPressureComponent : Component
[ViewVariables(VVAccess.ReadWrite)]
public int LastHighPressureMovementAirCycle { get; set; } = 0;
/// <summary>
/// Used to remember which fixtures we have to remove the table mask from and give it back accordingly
/// </summary>
[DataField]
public HashSet<string> TableLayerRemoved = new();
}