mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 14:07:46 +00:00
Do not unlock all minions by default
This commit is contained in:
parent
d55ae2c8c0
commit
b38da7c7cf
2 changed files with 3 additions and 4 deletions
|
@ -84,8 +84,6 @@ namespace Sapphire::Network::Packets::Server
|
|||
memset( m_data.unlockedPvp, 0xFF, sizeof( m_data.unlockedPvp ) );
|
||||
memset( m_data.unlockedRaids, 0xFF, sizeof( m_data.unlockedRaids ) );
|
||||
memset( m_data.unlockedTrials, 0xFF, sizeof( m_data.unlockedTrials ) );
|
||||
memset( m_data.minions, 0xFF, sizeof( m_data.minions ) );
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -71,8 +71,9 @@ namespace Sapphire::Network::Packets::Server
|
|||
m_data.title = player.getTitle();
|
||||
m_data.voice = player.getVoiceId();
|
||||
m_data.currentMount = player.getCurrentMount();
|
||||
m_data.activeMinion = player.getCurrentCompanion();
|
||||
|
||||
//m_data.activeMinion = player.getCurrentCompanion();
|
||||
m_data.activeMinion = 0;
|
||||
|
||||
m_data.onlineStatus = static_cast< uint8_t >( player.getOnlineStatus() );
|
||||
|
||||
//m_data.u23 = 0x04;
|
||||
|
|
Loading…
Add table
Reference in a new issue