Update Condition/ConditionFlag

This commit is contained in:
Haselnussbomber 2025-12-16 21:33:42 +01:00
parent f142fb1058
commit 19660a20d9
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
2 changed files with 14 additions and 1 deletions

View file

@ -18,7 +18,7 @@ internal sealed class Condition : IInternalDisposableService, ICondition
/// <summary> /// <summary>
/// Gets the current max number of conditions. You can get this just by looking at the condition sheet and how many rows it has. /// Gets 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>
internal const int MaxConditionEntries = 104; internal const int MaxConditionEntries = 112;
[ServiceManager.ServiceDependency] [ServiceManager.ServiceDependency]
private readonly Framework framework = Service<Framework>.Get(); private readonly Framework framework = Service<Framework>.Get();

View file

@ -520,4 +520,17 @@ public enum ConditionFlag
PilotingMech = 102, PilotingMech = 102,
// Unknown103 = 103, // Unknown103 = 103,
/// <summary>
/// Unable to execute command while editing a strategy board.
/// </summary>
EditingStrategyBoard = 104,
// Unknown105 = 105,
// Unknown106 = 106,
// Unknown107 = 107,
// Unknown108 = 108,
// Unknown109 = 109,
// Unknown110 = 110,
// Unknown111 = 111,
} }