mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 07:07:45 +00:00
some fix
This commit is contained in:
parent
7b5057f99b
commit
6ca53568d0
1 changed files with 3 additions and 2 deletions
|
@ -334,12 +334,13 @@ void Core::Network::GameConnection::clientTriggerHandler( const Packets::FFXIVAR
|
||||||
|
|
||||||
case ClientTriggerType::RequestHousingItemUI:
|
case ClientTriggerType::RequestHousingItemUI:
|
||||||
{
|
{
|
||||||
uint8_t plot = param2;
|
uint32_t plot = param2;
|
||||||
auto pShowHousingItemUIPacket = makeActorControl142(player.getId(), ShowHousingItemUI, 0, plot);
|
auto pShowHousingItemUIPacket = makeActorControl142(player.getId(), ShowHousingItemUI, 0, plot);
|
||||||
|
|
||||||
|
player.queuePacket( pShowHousingItemUIPacket );
|
||||||
|
|
||||||
//TODO: show item housing container
|
//TODO: show item housing container
|
||||||
|
|
||||||
player.queuePacket( pShowHousingItemUIPacket );
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue