From 85578a52031c77d3c0beb0efc063850ce13e33cc Mon Sep 17 00:00:00 2001 From: Rushi <44952533+Skyliegirl33@users.noreply.github.com> Date: Sun, 20 Feb 2022 19:12:57 +0100 Subject: [PATCH] Fix itemlvl field (cherry picked from commit 969c44864c6df1648da995b6a36a759338ac3689) --- src/world/Inventory/Item.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/Inventory/Item.cpp b/src/world/Inventory/Item.cpp index 03286805..483b510e 100644 --- a/src/world/Inventory/Item.cpp +++ b/src/world/Inventory/Item.cpp @@ -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;