Skip to content

Commit 4a6ede1

Browse files
committed
Core/Creatures: Fixed mistake in merge conflict resolution in d144724
1 parent fa061c8 commit 4a6ede1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/game/Entities/Creature/TemporarySummon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ m_timer(0), m_lifetime(0), m_canFollowOwner(true)
3838

3939
WorldObject* TempSummon::GetSummoner() const
4040
{
41-
return !m_summonerGUID.IsEmpty() ? ObjectAccessor::GetUnit(*this, m_summonerGUID) : nullptr;
41+
return !m_summonerGUID.IsEmpty() ? ObjectAccessor::GetWorldObject(*this, m_summonerGUID) : nullptr;
4242
}
4343

4444
Unit* TempSummon::GetSummonerUnit() const

0 commit comments

Comments
 (0)