Implemented learn preview talents, fixed talents/glyph display

This commit is contained in:
tomrus88 2009-03-03 02:01:16 +03:00
parent 5a967caef4
commit 8f1edbf513
7 changed files with 55 additions and 15 deletions

View file

@ -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;
}