mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 06:27:45 +00:00
More formatting
This commit is contained in:
parent
637fe3614d
commit
c19df0e637
1 changed files with 2 additions and 2 deletions
|
@ -1165,7 +1165,7 @@ void Sapphire::Entity::Player::unlockMount( uint32_t mountId )
|
|||
auto& exdData = Common::Service< Data::ExdData >::ref();
|
||||
auto mount = exdData.getRow< Component::Excel::Mount >( mountId );
|
||||
|
||||
if ( mount->data().MountOrder == -1 )
|
||||
if( mount->data().MountOrder == -1 )
|
||||
return;
|
||||
|
||||
m_mountGuide[ mount->data().MountOrder / 8 ] |= ( 1 << ( mount->data().MountOrder % 8 ) );
|
||||
|
@ -1392,7 +1392,7 @@ void Sapphire::Entity::Player::setTitle( uint16_t titleId )
|
|||
|
||||
void Sapphire::Entity::Player::setMaxGearSets( uint8_t amount )
|
||||
{
|
||||
if (amount == 1)
|
||||
if( amount == 1 )
|
||||
amount = 5;
|
||||
|
||||
m_equippedMannequin = amount;
|
||||
|
|
Loading…
Add table
Reference in a new issue