1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 06:47:45 +00:00

Fix itemlvl field

(cherry picked from commit 969c44864c6df1648da995b6a36a759338ac3689)
This commit is contained in:
Rushi 2022-02-20 19:12:57 +01:00
parent 2474a3d285
commit 85578a5203

View file

@ -26,7 +26,7 @@ Sapphire::Item::Item( uint64_t uId, uint32_t catalogId, bool isHq ) :
m_autoAttackDmg = static_cast< float >( m_weaponDmg * m_delayMs ) / 3000;
m_category = static_cast< Common::ItemUICategory >( itemInfo->data().UICategory );
m_slot = itemInfo->data().Slot;
m_itemLevel = itemInfo->data().EquipLevel;
m_itemLevel = itemInfo->data().Level;
m_maxStackSize = itemInfo->data().StackMax;
// EXD TODO: Not sure what this maps to
//m_additionalData = itemInfo->additionalData;