1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00

ReqServiceAccountList -> ClientVersionInfo

This commit is contained in:
NotAdam 2018-10-14 18:33:16 +11:00
parent 5a35a2dabf
commit 150c86fc48
2 changed files with 3 additions and 2 deletions

View file

@ -33,7 +33,7 @@ enum ClientLobbyIpcType :
{ {
ReqCharList = 0x0003, ReqCharList = 0x0003,
ReqEnterWorld = 0x0004, ReqEnterWorld = 0x0004,
ReqServiceAccountList = 0x0005, ClientVersionInfo = 0x0005,
ReqCharDelete = 0x000A, ReqCharDelete = 0x000A,
ReqCharCreate = 0x000B, ReqCharCreate = 0x000B,

View file

@ -404,8 +404,9 @@ void Core::Network::GameConnection::handleGamePacket( Packets::FFXIVARR_PACKET_R
switch( *reinterpret_cast< uint16_t* >( &packet.data[ 2 ] ) ) switch( *reinterpret_cast< uint16_t* >( &packet.data[ 2 ] ) )
{ {
case ReqServiceAccountList: case ClientVersionInfo:
{ {
// todo: validate client version based on sha1 or gamever/bootver
sendServiceAccountList( packet, tmpId ); sendServiceAccountList( packet, tmpId );
} }
break; break;