mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
chore: update conditions (#1199)
This commit is contained in:
parent
f9492af50c
commit
b897dbcc2d
2 changed files with 11 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ public sealed partial class Condition : IServiceType
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The current max number of conditions. You can get this just by looking at the condition sheet and how many rows it has.
|
/// The current max number of conditions. You can get this just by looking at the condition sheet and how many rows it has.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public const int MaxConditionEntries = 100;
|
public const int MaxConditionEntries = 104;
|
||||||
|
|
||||||
private readonly bool[] cache = new bool[MaxConditionEntries];
|
private readonly bool[] cache = new bool[MaxConditionEntries];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -464,4 +464,14 @@ public enum ConditionFlag
|
||||||
/// Unable to execute command while recruiting for a non-cross-world party.
|
/// Unable to execute command while recruiting for a non-cross-world party.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
RecruitingWorldOnly = 98,
|
RecruitingWorldOnly = 98,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Command unavailable in this location.
|
||||||
|
/// </summary>
|
||||||
|
Unknown99 = 99,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unable to execute command while editing a portrait.
|
||||||
|
/// </summary>
|
||||||
|
EditingPortrait = 100,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue