chore: update conditions (#1199)

This commit is contained in:
Aireil 2023-05-22 17:36:02 +02:00 committed by GitHub
parent f9492af50c
commit b897dbcc2d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -17,7 +17,7 @@ public sealed partial class Condition : IServiceType
/// <summary>
/// The current max number of conditions. You can get this just by looking at the condition sheet and how many rows it has.
/// </summary>
public const int MaxConditionEntries = 100;
public const int MaxConditionEntries = 104;
private readonly bool[] cache = new bool[MaxConditionEntries];

View file

@ -464,4 +464,14 @@ public enum ConditionFlag
/// Unable to execute command while recruiting for a non-cross-world party.
/// </summary>
RecruitingWorldOnly = 98,
/// <summary>
/// Command unavailable in this location.
/// </summary>
Unknown99 = 99,
/// <summary>
/// Unable to execute command while editing a portrait.
/// </summary>
EditingPortrait = 100,
}