fix: Broken HoverActionKind IDs (#2034)

This commit is contained in:
KazWolfe 2024-08-27 09:39:11 -07:00 committed by GitHub
parent 063f58a49a
commit b2166fb910
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14,35 +14,35 @@ public enum HoverActionKind
/// <summary> /// <summary>
/// A regular action is hovered. /// A regular action is hovered.
/// </summary> /// </summary>
Action = 21, Action = 28,
/// <summary> /// <summary>
/// A general action is hovered. /// A general action is hovered.
/// </summary> /// </summary>
GeneralAction = 23, GeneralAction = 30,
/// <summary> /// <summary>
/// A companion order type of action is hovered. /// A companion order type of action is hovered.
/// </summary> /// </summary>
CompanionOrder = 24, CompanionOrder = 31,
/// <summary> /// <summary>
/// A main command type of action is hovered. /// A main command type of action is hovered.
/// </summary> /// </summary>
MainCommand = 25, MainCommand = 32,
/// <summary> /// <summary>
/// An extras command type of action is hovered. /// An extras command type of action is hovered.
/// </summary> /// </summary>
ExtraCommand = 26, ExtraCommand = 33,
/// <summary> /// <summary>
/// A pet order type of action is hovered. /// A pet order type of action is hovered.
/// </summary> /// </summary>
PetOrder = 28, PetOrder = 35,
/// <summary> /// <summary>
/// A trait is hovered. /// A trait is hovered.
/// </summary> /// </summary>
Trait = 29, Trait = 36,
} }