[9308] Fix SMSG_CHAR_ENUM opcode

Signed-off-by: Lightguard <Lightguard@tauri.hu>
This commit is contained in:
Daveh 2010-02-05 01:33:30 +01:00 committed by Lightguard
parent 0c8fccbd47
commit cb33736a5a
4 changed files with 9 additions and 2 deletions

View file

@ -1507,7 +1507,8 @@ bool Player::BuildEnumData( QueryResult * result, WorldPacket * p_data )
*p_data << uint32(char_flags); // character flags
// character customize flags
*p_data << uint32(atLoginFlags & AT_LOGIN_CUSTOMIZE ? CHAR_CUSTOMIZE_FLAG_CUSTOMIZE : CHAR_CUSTOMIZE_FLAG_NONE);
*p_data << uint8(1); // unknown
// First login
*p_data << uint8(atLoginFlags & AT_LOGIN_FIRST ? 1 : 0);
// Pets info
{