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

Title IPC updated for 4.1;

This commit is contained in:
Maru 2017-10-10 16:05:20 -03:00
parent 7f20d4b706
commit 2c34f47c98
2 changed files with 6 additions and 2 deletions

View file

@ -115,7 +115,7 @@ namespace Packets {
ActorFreeSpawn = 0x0191, // unchanged for sb ActorFreeSpawn = 0x0191, // unchanged for sb
InitZone = 0x019A, // unchanged for sb InitZone = 0x019A, // unchanged for sb
WeatherChange = 0x01AF, // updated for sb WeatherChange = 0x01AF, // updated for sb
PlayerTitleList = 0x01B1, // updated for 4.06 PlayerTitleList = 0x01BD, // updated for 4.1
Discovery = 0x01B2, // updated for sb Discovery = 0x01B2, // updated for sb
EorzeaTimeOffset = 0x01B4, EorzeaTimeOffset = 0x01B4,

View file

@ -229,6 +229,10 @@ void Core::Network::GameConnection::actionHandler( const Packets::GamePacket& in
} }
break; break;
} }
default:
{
g_log.debug( "[" + std::to_string( m_pSession->getId() ) + "] Unhandled action: " +
boost::str( boost::format( "%|04X|" ) % (uint32_t) ( commandId & 0xFFFF ) ) );
}
} }
} }