Fix hunger/thirst 'Dead' thresholds (#9453)
This commit is contained in:
@@ -24,10 +24,10 @@ namespace Content.Shared.Nutrition.Components
|
||||
[Serializable, NetSerializable]
|
||||
public enum HungerThreshold : byte
|
||||
{
|
||||
Overfed,
|
||||
Okay,
|
||||
Peckish,
|
||||
Starving,
|
||||
Dead,
|
||||
Overfed = 1 << 3,
|
||||
Okay = 1 << 2,
|
||||
Peckish = 1 << 1,
|
||||
Starving = 1 << 0,
|
||||
Dead = 0,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user