Fix big boxes not holding in air (#12031)

This commit is contained in:
Nemanja
2022-10-18 19:04:47 -04:00
committed by GitHub
parent cff335174c
commit 661a569732
2 changed files with 7 additions and 7 deletions

View File

@@ -70,8 +70,8 @@ public sealed class EntityStorageComponent : Component, IGasMixtureHolder
/// <summary>
/// Whether or not the container is sealed and traps air inside of it
/// </summary>
[DataField("airTight"), ViewVariables(VVAccess.ReadWrite)]
public bool AirTight = true;
[DataField("airtight"), ViewVariables(VVAccess.ReadWrite)]
public bool Airtight = true;
[DataField("open")]
public bool Open;