mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 16:37:00 +00:00
missing code for last commit
This commit is contained in:
parent
f83d6b058d
commit
a96cf69415
1 changed files with 13 additions and 0 deletions
|
|
@ -1089,3 +1089,16 @@ void WorldSession::HandleSetAllowLowLevelRaidOpcode(WorldPacket& recv_data)
|
||||||
|
|
||||||
GetPlayer()->SetAllowLowLevelRaid(allow);
|
GetPlayer()->SetAllowLowLevelRaid(allow);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void WorldSession::HandleGroupRequestJoinUpdates(WorldPacket& recv_data)
|
||||||
|
{
|
||||||
|
Group* group = GetPlayer()->GetGroup();
|
||||||
|
if (!group)
|
||||||
|
return;
|
||||||
|
|
||||||
|
WorldPacket data(SMSG_REAL_GROUP_UPDATE, 1 + 4 + 8);
|
||||||
|
data << uint8(group->);
|
||||||
|
data << uint32(group->GetMembersCount() - 1);
|
||||||
|
data << ObjectGuid(group->GetLeaderGuid());
|
||||||
|
SendPacket(&data);
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue