mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-25 11:07:45 +00:00
workaround for re-enter instance not loading the correct things, probably a totally different problem but it will do for now
This commit is contained in:
parent
7852e5142a
commit
d8a411b302
1 changed files with 5 additions and 0 deletions
|
@ -45,6 +45,11 @@ uint8_t Sapphire::Event::Director::getSequence() const
|
|||
void Sapphire::Event::Director::sendDirectorClear( Sapphire::Entity::Player& player ) const
|
||||
{
|
||||
player.queuePacket( makeActorControlSelf( player.getId(), DirectorClear, m_directorId ) );
|
||||
auto varPacket = makeZonePacket< FFXIVIpcDirectorVars >( player.getId() );
|
||||
varPacket->data().m_directorId = getDirectorId();
|
||||
varPacket->data().m_sequence = 0;
|
||||
varPacket->data().m_branch = 0;
|
||||
player.queuePacket( varPacket );
|
||||
}
|
||||
|
||||
void Sapphire::Event::Director::sendDirectorVars( Sapphire::Entity::Player& player ) const
|
||||
|
|
Loading…
Add table
Reference in a new issue