Core/Misc: Rename LinkedListHead insertion functions to push_back/push_front to fit standard container naming

This commit is contained in:
Shauren
2025-07-11 18:47:08 +02:00
parent f4c0ede726
commit 419cdf87dd
4 changed files with 8 additions and 7 deletions

View File

@@ -1387,7 +1387,7 @@ void Group::ResetInstances(InstanceResetMethod method, Player* notifyPlayer)
void Group::LinkOwnedInstance(GroupInstanceReference* ref)
{
m_ownedInstancesMgr.insertLast(ref);
m_ownedInstancesMgr.push_back(ref);
}
void Group::_homebindIfInstance(Player* player)
@@ -1789,7 +1789,7 @@ void Group::SetGroupMemberFlag(ObjectGuid guid, bool apply, GroupMemberFlags fla
void Group::LinkMember(GroupReference* pRef)
{
m_memberMgr.insertFirst(pRef);
m_memberMgr.push_front(pRef);
}
void Group::DelinkMember(ObjectGuid guid)