mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-23 13:17:45 +00:00
Please don't look
This commit is contained in:
parent
964198dc90
commit
a6a35ab8e5
2 changed files with 6 additions and 5 deletions
|
@ -638,14 +638,15 @@ struct FFXIVIpcUpdateClassInfo : FFXIVIpcBasePacket<UpdateClassInfo>
|
|||
uint32_t currentExp;
|
||||
uint32_t restedExp;
|
||||
};
|
||||
|
||||
/**
|
||||
* Structural representation of the packet sent by the server
|
||||
* to send the titles available to the player
|
||||
*/
|
||||
struct FFXIVIpcPlayerTitleList : FFXIVIpcBasePacket<PlayerTitleList>
|
||||
{
|
||||
char padding;
|
||||
uint32_t bitmask;
|
||||
uint16_t bitmask;
|
||||
//uint16_t padding;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -121,12 +121,12 @@ void Core::Network::GameConnection::actionHandler( const Packets::GamePacket& in
|
|||
case 0x12F: // Get title list
|
||||
{
|
||||
g_log.debug( "for real" );
|
||||
/*
|
||||
|
||||
GamePacketNew< FFXIVIpcPlayerTitleList, ServerZoneIpcType > titleListPacket( pPlayer->getId() );
|
||||
//titleListPacket.data().padding = 3;
|
||||
titleListPacket.data().bitmask = 0;
|
||||
titleListPacket.data().bitmask |= 1;
|
||||
pPlayer->queuePacket( titleListPacket );
|
||||
*/
|
||||
|
||||
}
|
||||
case 0x133: // Update howtos seen
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue