mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 00:18:43 +01:00
Core/Spells: Fix hunter talent "Kindred Spirits" for 4.3.4
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
DELETE FROM `spell_pet_auras WHERE `spell` IN (56314,56315);
|
||||
INSERT INTO `spell_pet_auras` (`spell`, `effectId`, `pet`, `aura`) VALUES
|
||||
(56314, 0, 0, 88680),
|
||||
(56315 , 0, 0, 88680);
|
||||
@@ -173,7 +173,7 @@ class spell_hun_chimera_shot : public SpellScriptLoader
|
||||
{
|
||||
GetCaster()->CastSpell(GetCaster(), SPELL_HUNTER_CHIMERA_SHOT_HEAL, true);
|
||||
|
||||
if (Aura* aur = GetHitUnit()->GetAura(SPELL_HUNTER_SERPENT_STING))
|
||||
if (Aura* aur = GetHitUnit()->GetAura(SPELL_HUNTER_SERPENT_STING, GetCaster()->GetGUID()))
|
||||
aur->SetDuration(aur->GetSpellInfo()->GetMaxDuration(), true);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user