mirror of
https://github.com/mangosfour/server.git
synced 2025-12-22 04:37:01 +00:00
Implemented learn preview talents, fixed talents/glyph display
This commit is contained in:
parent
5a967caef4
commit
8f1edbf513
7 changed files with 55 additions and 15 deletions
|
|
@ -335,3 +335,15 @@ void WorldSession::HandleSetLfgOpcode( WorldPacket & recv_data )
|
|||
|
||||
SendLfgResult(type, entry, 0);
|
||||
}
|
||||
|
||||
void WorldSession::HandleLfgSetRoles(WorldPacket &recv_data)
|
||||
{
|
||||
CHECK_PACKET_SIZE(recv_data, 1);
|
||||
|
||||
sLog.outDebug("CMSG_LFG_SET_ROLES");
|
||||
|
||||
uint8 roles;
|
||||
recv_data >> roles;
|
||||
|
||||
_player->m_lookingForGroup.roles = roles;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue