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:
parent
7f20d4b706
commit
2c34f47c98
2 changed files with 6 additions and 2 deletions
|
@ -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,
|
||||||
|
|
|
@ -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 ) ) );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue