Update ConditionFlag (#2265)

This commit is contained in:
Haselnussbomber 2025-05-01 20:49:30 +02:00 committed by GitHub
parent ddf0a97c83
commit 30b5c0be11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -178,11 +178,20 @@ public enum ConditionFlag
/// <summary> /// <summary>
/// Unable to execute command while occupied. /// Unable to execute command while occupied.
/// </summary> /// </summary>
/// <remarks>
/// Observed during Materialize (Desynthesis, Materia Extraction, Aetherial Reduction) and Repair.
/// </remarks>
Occupied39 = 39, Occupied39 = 39,
/// <summary> /// <summary>
/// Unable to execute command while crafting. /// Unable to execute command while crafting.
/// </summary> /// </summary>
ExecutingCraftingAction = 40,
/// <summary>
/// Unable to execute command while crafting.
/// </summary>
[Obsolete("Renamed to ExecutingCraftingAction.")]
Crafting40 = 40, Crafting40 = 40,
/// <summary> /// <summary>
@ -193,6 +202,13 @@ public enum ConditionFlag
/// <summary> /// <summary>
/// Unable to execute command while gathering. /// Unable to execute command while gathering.
/// </summary> /// </summary>
/// <remarks> Includes fishing. </remarks>
ExecutingGatheringAction = 42,
/// <summary>
/// Unable to execute command while gathering.
/// </summary>
[Obsolete("Renamed to ExecutingGatheringAction.")]
Gathering42 = 42, Gathering42 = 42,
/// <summary> /// <summary>
@ -345,6 +361,9 @@ public enum ConditionFlag
/// <summary> /// <summary>
/// Unable to execute command while mounting. /// Unable to execute command while mounting.
/// </summary> /// </summary>
/// <remarks>
/// Observed in Cosmic Exploration while using the actions Astrodrill (only briefly) and Solar Flarethrower.
/// </remarks>
Mounting71 = 71, Mounting71 = 71,
/// <summary> /// <summary>
@ -412,7 +431,10 @@ public enum ConditionFlag
/// </summary> /// </summary>
ParticipatingInCrossWorldPartyOrAlliance = 84, ParticipatingInCrossWorldPartyOrAlliance = 84,
// Unknown85 = 85, /// <remarks>
/// Observed in Cosmic Exploration while gathering during a stellar mission.
/// </remarks>
Unknown85 = 85,
/// <summary> /// <summary>
/// Unable to execute command while playing duty record. /// Unable to execute command while playing duty record.
@ -480,6 +502,9 @@ public enum ConditionFlag
/// <summary> /// <summary>
/// Cannot execute at this time. /// Cannot execute at this time.
/// </summary> /// </summary>
/// <remarks>
/// Observed in Cosmic Exploration while participating in MechaEvent.
/// </remarks>
Unknown96 = 96, Unknown96 = 96,
/// <summary> /// <summary>
@ -502,7 +527,21 @@ public enum ConditionFlag
/// </summary> /// </summary>
EditingPortrait = 100, EditingPortrait = 100,
// Unknown101 = 101, /// <summary>
// Unknown102 = 102, /// Cannot execute at this time.
/// </summary>
/// <remarks>
/// Observed in Cosmic Exploration, in mech flying to FATE or during Cosmoliner use. Maybe ClientPath related.
/// </remarks>
Unknown101 = 101,
/// <summary>
/// Unable to execute command while undertaking a duty.
/// </summary>
/// <remarks>
/// Used in Cosmic Exploration.
/// </remarks>
PilotingMech = 102,
// Unknown103 = 103, // Unknown103 = 103,
} }