diff --git a/Source/Game/Entities/Player/Player.Talents.cs b/Source/Game/Entities/Player/Player.Talents.cs index 3ab411963..a2fcd5b76 100644 --- a/Source/Game/Entities/Player/Player.Talents.cs +++ b/Source/Game/Entities/Player/Player.Talents.cs @@ -385,6 +385,13 @@ namespace Game.Entities activeGlyphs.IsFullUpdate = true; SendPacket(activeGlyphs); + + var shapeshiftAuras = GetAuraEffectsByType(AuraType.ModShapeshift); + foreach (AuraEffect aurEff in shapeshiftAuras) + { + aurEff.HandleShapeshiftBoosts(this, false); + aurEff.HandleShapeshiftBoosts(this, true); + } } public Dictionary GetTalentMap(uint spec) { return _specializationInfo.Talents[spec]; } diff --git a/Source/Game/Spells/Auras/AuraEffect.cs b/Source/Game/Spells/Auras/AuraEffect.cs index 975b2bbd2..9fe0eefb0 100644 --- a/Source/Game/Spells/Auras/AuraEffect.cs +++ b/Source/Game/Spells/Auras/AuraEffect.cs @@ -768,7 +768,7 @@ namespace Game.Spells GetBase().CallScriptAfterEffectProcHandlers(this, aurApp, eventInfo); } - void HandleShapeshiftBoosts(Unit target, bool apply) + public void HandleShapeshiftBoosts(Unit target, bool apply) { uint spellId = 0; uint spellId2 = 0;