diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-23 14:54:21 +0200 |
|---|---|---|
| committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-07-23 14:54:21 +0200 |
| commit | 97608aeff754ef94b73b868437d8f41ccace24be (patch) | |
| tree | b57041df391657e4964f2d9eb759e7b47fbd7741 /src | |
| parent | 193d71f158d87a875d16020323483c7484198d7f (diff) | |
Core/Spells: Fix hunter talent "Kindred Spirits" for 4.3.4
Diffstat (limited to 'src')
| -rw-r--r-- | src/server/scripts/Spells/spell_hunter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp index 7c4d3ca2208..61612c7d9e7 100644 --- a/src/server/scripts/Spells/spell_hunter.cpp +++ b/src/server/scripts/Spells/spell_hunter.cpp @@ -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); } |
