mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-30 08:07:46 +00:00
new and improved™️ naming convention has been rejected
This commit is contained in:
parent
6af13f39a3
commit
50c262d11b
2 changed files with 4 additions and 4 deletions
|
@ -311,13 +311,13 @@ enum ActorControlType : uint16_t
|
|||
RequestLandSignOwned = 0x452,
|
||||
RequestWardLandInfo = 0x453,
|
||||
RequestLandRelinquish = 0x454,
|
||||
RequestHousingLandInventory = 0x0458,
|
||||
RequestLandInventory = 0x0458,
|
||||
RequestEstateRename = 0x45A,
|
||||
RequestEstateEditGreeting = 0x45B,
|
||||
RequestEstateGreeting = 0x45C, // sends FFXIVIpcHousingEstateGreeting in return
|
||||
RequestEstateEditGuestAccessSettings = 0x45D,
|
||||
RequestEstateTagSettings = 0x45F,
|
||||
RequestHousingEstateInventory = 0x0461,
|
||||
RequestEstateInventory = 0x0461,
|
||||
RequestHousingItemUI = 0x463,
|
||||
RequestSharedEstateSettings = 0x46F,
|
||||
UpdateEstateLightingLevel = 0x471,
|
||||
|
|
|
@ -421,7 +421,7 @@ void Sapphire::Network::GameConnection::clientTriggerHandler( const Packets::FFX
|
|||
|
||||
break;
|
||||
}
|
||||
case ClientTriggerType::RequestHousingLandInventory:
|
||||
case ClientTriggerType::RequestLandInventory:
|
||||
{
|
||||
if( param2 != 1 )
|
||||
return;
|
||||
|
@ -436,7 +436,7 @@ void Sapphire::Network::GameConnection::clientTriggerHandler( const Packets::FFX
|
|||
|
||||
break;
|
||||
}
|
||||
case ClientTriggerType::RequestHousingEstateInventory:
|
||||
case ClientTriggerType::RequestEstateInventory:
|
||||
{
|
||||
// only sent if param1 is 1, because the client sends this with 0 when you open the ui for whatever reason
|
||||
if( param1 != 1 )
|
||||
|
|
Loading…
Add table
Reference in a new issue