Air alarm patches (#11004)

This commit is contained in:
Flipp Syder
2022-09-04 02:04:15 -07:00
committed by GitHub
parent ff61bc12a4
commit d447b0f80e
7 changed files with 31 additions and 18 deletions

View File

@@ -5,8 +5,9 @@ namespace Content.Shared.Atmos.Monitor;
[Serializable, NetSerializable]
public enum AtmosAlarmType : sbyte
{
Normal = 0,
Warning = 1,
Danger = 2, // 1 << 1 is the exact same thing and we're not really doing **bitmasking** are we?
Emagged = 3,
Invalid = 0,
Normal = 1,
Warning = 2,
Danger = 3,
Emagged = 4,
}