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

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);