mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-05 08:28:57 +01:00
Core/Misc: Rename LinkedListHead insertion functions to push_back/push_front to fit standard container naming
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user