diff --git a/src/world/Actor/PlayerInventory.cpp b/src/world/Actor/PlayerInventory.cpp index 3d25ad4f..77677c64 100644 --- a/src/world/Actor/PlayerInventory.cpp +++ b/src/world/Actor/PlayerInventory.cpp @@ -843,7 +843,7 @@ uint16_t Sapphire::Entity::Player::calculateEquippedGearItemLevel() { auto currItem = it->second; - if( currItem ) + if( currItem && currItem->getCategory() != Common::ItemUICategory::SoulCrystal ) { iLvlResult += currItem->getItemLevel();