mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 22:57:45 +00:00
Fix itemlvl field
(cherry picked from commit 969c44864c6df1648da995b6a36a759338ac3689)
This commit is contained in:
parent
2474a3d285
commit
85578a5203
1 changed files with 1 additions and 1 deletions
|
@ -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_autoAttackDmg = static_cast< float >( m_weaponDmg * m_delayMs ) / 3000;
|
||||||
m_category = static_cast< Common::ItemUICategory >( itemInfo->data().UICategory );
|
m_category = static_cast< Common::ItemUICategory >( itemInfo->data().UICategory );
|
||||||
m_slot = itemInfo->data().Slot;
|
m_slot = itemInfo->data().Slot;
|
||||||
m_itemLevel = itemInfo->data().EquipLevel;
|
m_itemLevel = itemInfo->data().Level;
|
||||||
m_maxStackSize = itemInfo->data().StackMax;
|
m_maxStackSize = itemInfo->data().StackMax;
|
||||||
// EXD TODO: Not sure what this maps to
|
// EXD TODO: Not sure what this maps to
|
||||||
//m_additionalData = itemInfo->additionalData;
|
//m_additionalData = itemInfo->additionalData;
|
||||||
|
|
Loading…
Add table
Reference in a new issue