Allow gas filters to not filter gases. (#12051)

This commit is contained in:
Vordenburg
2022-11-03 21:27:20 -04:00
committed by GitHub
parent 86ef8c5473
commit bf908512bd
5 changed files with 42 additions and 16 deletions

View File

@@ -50,9 +50,9 @@ namespace Content.Shared.Atmos.Piping.Trinary.Components
[Serializable, NetSerializable]
public sealed class GasFilterSelectGasMessage : BoundUserInterfaceMessage
{
public int ID { get; }
public int? ID { get; }
public GasFilterSelectGasMessage(int id)
public GasFilterSelectGasMessage(int? id)
{
ID = id;
}