1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-07-11 23:07:44 +00:00

* Use the right array this time

This commit is contained in:
goaaats 2017-12-04 16:57:47 +01:00
parent 9b096c72ff
commit a35b934939

View file

@ -625,7 +625,7 @@ void Core::Entity::Player::learnMount( uint8_t mountId )
uint8_t value;
Util::valueToFlagByteIndexValue( mountId, value, index );
m_orchestrion[index] |= value;
m_mountGuide[index] |= value;
queuePacket( ActorControlPacket143( getId(), ToggleMountUnlock, mountId, 1 ) );
}