Update FateState.cs (#2218)

Updating to 7.2 according to related changes in CS
01c4dfe8ca
This commit is contained in:
Bloodsoul 2025-03-28 17:07:35 +01:00 committed by GitHub
parent 6160252418
commit e5e3b2780c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,25 +8,25 @@ public enum FateState : byte
/// <summary>
/// The Fate is active.
/// </summary>
Running = 0x02,
Running = 0x04,
/// <summary>
/// The Fate has ended.
/// </summary>
Ended = 0x04,
Ended = 0x07,
/// <summary>
/// The player failed the Fate.
/// </summary>
Failed = 0x05,
Failed = 0x08,
/// <summary>
/// The Fate is preparing to run.
/// </summary>
Preparation = 0x07,
Preparation = 0x03,
/// <summary>
/// The Fate is preparing to end.
/// </summary>
WaitingForEnd = 0x08,
WaitingForEnd = 0x05,
}