From 3489622a603cf47151736bafe933b35b772ecc4e Mon Sep 17 00:00:00 2001 From: hondacrx Date: Sun, 19 Jul 2020 16:44:55 -0400 Subject: [PATCH] Core/Auras: Named two test realm aura types Port From (https://github.com/TrinityCore/TrinityCore/commit/d1956465932aa3f4c2393336ff5fd2f115fe5a21) --- Source/Framework/Constants/Spells/SpellAuraConst.cs | 4 ++-- Source/Game/Spells/Auras/AuraEffect.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Framework/Constants/Spells/SpellAuraConst.cs b/Source/Framework/Constants/Spells/SpellAuraConst.cs index 8eee68dc9..53a6a4deb 100644 --- a/Source/Framework/Constants/Spells/SpellAuraConst.cs +++ b/Source/Framework/Constants/Spells/SpellAuraConst.cs @@ -345,7 +345,7 @@ namespace Framework.Constants ModNoActions = 321, InterfereTargetting = 322, Unk323 = 323, // Not Used In 4.3.4 - Unk324 = 324, // Spell Critical Chance (Probably By School Mask) + OverrideUnlockedAzeriteEssenceRank = 324, // testing aura LearnPvpTalent = 325, // NYI PhaseGroup = 326, // Phase Related Unk327 = 327, // Not Used In 4.3.4 @@ -501,7 +501,7 @@ namespace Framework.Constants Unk477 = 477, Unk478 = 478, Unk479 = 479, - Unk480 = 480, + ModArtifactItemLevel = 480, ConvertConsumedRune = 481, Unk482 = 482, SuppressTransforms = 483, // NYI diff --git a/Source/Game/Spells/Auras/AuraEffect.cs b/Source/Game/Spells/Auras/AuraEffect.cs index 2db904ad9..f745fde55 100644 --- a/Source/Game/Spells/Auras/AuraEffect.cs +++ b/Source/Game/Spells/Auras/AuraEffect.cs @@ -978,7 +978,7 @@ namespace Game.Spells [AuraEffectHandler(AuraType.Unk311)] [AuraEffectHandler(AuraType.AnimReplacementSet)] [AuraEffectHandler(AuraType.ModSpellPowerPct)] - [AuraEffectHandler(AuraType.Unk324)] + [AuraEffectHandler(AuraType.OverrideUnlockedAzeriteEssenceRank)] [AuraEffectHandler(AuraType.ModBlind)] [AuraEffectHandler(AuraType.Unk335)] [AuraEffectHandler(AuraType.MountRestrictions)]