diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 8751e8ebc06..a9a7e907955 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -1846,8 +1846,24 @@ void Spell::SetTargetMap(SpellEffectIndex effIndex, uint32 targetMode, UnitList& case TARGET_ALL_PARTY_AROUND_CASTER: case TARGET_ALL_PARTY_AROUND_CASTER_2: case TARGET_ALL_PARTY: - FillRaidOrPartyTargets(targetUnitMap, m_caster, m_caster, radius, false, true, true); + { + switch(m_spellInfo->Id) + { + case 70893: // Culling the Herd + case 53434: // Call of the Wild + { + if (Unit *owner = m_caster->GetOwner()) + targetUnitMap.push_back(owner); + break; + } + default: + { + FillRaidOrPartyTargets(targetUnitMap, m_caster, m_caster, radius, false, true, true); + break; + } + } break; + } case TARGET_ALL_RAID_AROUND_CASTER: { if(m_spellInfo->Id == 57669) // Replenishment (special target selection) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index eb5d6d3c412..7a646623dc1 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "10132" + #define REVISION_NR "10133" #endif // __REVISION_NR_H__