fix(Core/Spells): Use owner as summoner when assigning temp summon ally (#25393)

This commit is contained in:
sogladev 2026-04-07 17:52:00 +02:00 committed by GitHub
parent 9ef460759c
commit c39ee954d1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2493,8 +2493,8 @@ void Spell::EffectSummonType(SpellEffIndex effIndex)
if (properties->Category == SUMMON_CATEGORY_ALLY)
{
summon->SetOwnerGUID(m_originalCaster->GetGUID());
summon->SetFaction(m_originalCaster->GetFaction());
summon->SetOwnerGUID(summoner->GetGUID());
summon->SetFaction(summoner->GetFaction());
}
ExecuteLogEffectSummonObject(effIndex, summon);