mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 05:57:45 +00:00
Title IPC updated for 4.1;
This commit is contained in:
parent
7f20d4b706
commit
2c34f47c98
2 changed files with 6 additions and 2 deletions
|
@ -115,7 +115,7 @@ namespace Packets {
|
|||
ActorFreeSpawn = 0x0191, // unchanged for sb
|
||||
InitZone = 0x019A, // unchanged for sb
|
||||
WeatherChange = 0x01AF, // updated for sb
|
||||
PlayerTitleList = 0x01B1, // updated for 4.06
|
||||
PlayerTitleList = 0x01BD, // updated for 4.1
|
||||
Discovery = 0x01B2, // updated for sb
|
||||
|
||||
EorzeaTimeOffset = 0x01B4,
|
||||
|
|
|
@ -229,6 +229,10 @@ void Core::Network::GameConnection::actionHandler( const Packets::GamePacket& in
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
{
|
||||
g_log.debug( "[" + std::to_string( m_pSession->getId() ) + "] Unhandled action: " +
|
||||
boost::str( boost::format( "%|04X|" ) % (uint32_t) ( commandId & 0xFFFF ) ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue