mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Spells: Named SPELL_ATTR14_AURA_IS_PRIVATE
This commit is contained in:
@@ -964,7 +964,7 @@ enum SpellAttr14 : uint32
|
||||
SPELL_ATTR14_UNK17 = 0x00020000, // TITLE Unknown attribute 17@Attr14
|
||||
SPELL_ATTR14_UNK18 = 0x00040000, // TITLE Unknown attribute 18@Attr14
|
||||
SPELL_ATTR14_UNK19 = 0x00080000, // TITLE Unknown attribute 19@Attr14
|
||||
SPELL_ATTR14_UNK20 = 0x00100000, // TITLE Unknown attribute 20@Attr14
|
||||
SPELL_ATTR14_AURA_IS_PRIVATE = 0x00100000, // TITLE Aura is private DESCRIPTION Clientside attribue that prevents the aura from being accessed by addons (but is still visible in UI)
|
||||
SPELL_ATTR14_UNK21 = 0x00200000, // TITLE Unknown attribute 21@Attr14
|
||||
SPELL_ATTR14_UNK22 = 0x00400000, // TITLE Unknown attribute 22@Attr14
|
||||
SPELL_ATTR14_UNK23 = 0x00800000, // TITLE Unknown attribute 23@Attr14
|
||||
|
||||
@@ -2100,7 +2100,7 @@ TC_API_EXPORT EnumText EnumUtils<SpellAttr14>::ToString(SpellAttr14 value)
|
||||
case SPELL_ATTR14_UNK17: return { "SPELL_ATTR14_UNK17", "Unknown attribute 17@Attr14", "" };
|
||||
case SPELL_ATTR14_UNK18: return { "SPELL_ATTR14_UNK18", "Unknown attribute 18@Attr14", "" };
|
||||
case SPELL_ATTR14_UNK19: return { "SPELL_ATTR14_UNK19", "Unknown attribute 19@Attr14", "" };
|
||||
case SPELL_ATTR14_UNK20: return { "SPELL_ATTR14_UNK20", "Unknown attribute 20@Attr14", "" };
|
||||
case SPELL_ATTR14_AURA_IS_PRIVATE: return { "SPELL_ATTR14_AURA_IS_PRIVATE", "Aura is private", "Clientside attribue that prevents the aura from being accessed by addons (but is still visible in UI)" };
|
||||
case SPELL_ATTR14_UNK21: return { "SPELL_ATTR14_UNK21", "Unknown attribute 21@Attr14", "" };
|
||||
case SPELL_ATTR14_UNK22: return { "SPELL_ATTR14_UNK22", "Unknown attribute 22@Attr14", "" };
|
||||
case SPELL_ATTR14_UNK23: return { "SPELL_ATTR14_UNK23", "Unknown attribute 23@Attr14", "" };
|
||||
@@ -2144,7 +2144,7 @@ TC_API_EXPORT SpellAttr14 EnumUtils<SpellAttr14>::FromIndex(size_t index)
|
||||
case 17: return SPELL_ATTR14_UNK17;
|
||||
case 18: return SPELL_ATTR14_UNK18;
|
||||
case 19: return SPELL_ATTR14_UNK19;
|
||||
case 20: return SPELL_ATTR14_UNK20;
|
||||
case 20: return SPELL_ATTR14_AURA_IS_PRIVATE;
|
||||
case 21: return SPELL_ATTR14_UNK21;
|
||||
case 22: return SPELL_ATTR14_UNK22;
|
||||
case 23: return SPELL_ATTR14_UNK23;
|
||||
@@ -2185,7 +2185,7 @@ TC_API_EXPORT size_t EnumUtils<SpellAttr14>::ToIndex(SpellAttr14 value)
|
||||
case SPELL_ATTR14_UNK17: return 17;
|
||||
case SPELL_ATTR14_UNK18: return 18;
|
||||
case SPELL_ATTR14_UNK19: return 19;
|
||||
case SPELL_ATTR14_UNK20: return 20;
|
||||
case SPELL_ATTR14_AURA_IS_PRIVATE: return 20;
|
||||
case SPELL_ATTR14_UNK21: return 21;
|
||||
case SPELL_ATTR14_UNK22: return 22;
|
||||
case SPELL_ATTR14_UNK23: return 23;
|
||||
|
||||
Reference in New Issue
Block a user