mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-09 04:07:46 +00:00
ignore soulstones in ilvl calculation
This commit is contained in:
parent
fc9f1e6673
commit
9a26a24d31
1 changed files with 1 additions and 1 deletions
|
@ -843,7 +843,7 @@ uint16_t Sapphire::Entity::Player::calculateEquippedGearItemLevel()
|
||||||
{
|
{
|
||||||
auto currItem = it->second;
|
auto currItem = it->second;
|
||||||
|
|
||||||
if( currItem )
|
if( currItem && currItem->getCategory() != Common::ItemUICategory::SoulCrystal )
|
||||||
{
|
{
|
||||||
iLvlResult += currItem->getItemLevel();
|
iLvlResult += currItem->getItemLevel();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue