aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/game/Miscellaneous/SharedDefines.h2
-rw-r--r--src/server/game/Miscellaneous/enuminfo_SharedDefines.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/Miscellaneous/SharedDefines.h b/src/server/game/Miscellaneous/SharedDefines.h
index 01af7e0bfb1..9047a9c83ac 100644
--- a/src/server/game/Miscellaneous/SharedDefines.h
+++ b/src/server/game/Miscellaneous/SharedDefines.h
@@ -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
diff --git a/src/server/game/Miscellaneous/enuminfo_SharedDefines.cpp b/src/server/game/Miscellaneous/enuminfo_SharedDefines.cpp
index 54147ad8575..6ced40d6a20 100644
--- a/src/server/game/Miscellaneous/enuminfo_SharedDefines.cpp
+++ b/src/server/game/Miscellaneous/enuminfo_SharedDefines.cpp
@@ -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;