mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-07 19:27:45 +00:00
fix itemlevel calc
This commit is contained in:
parent
d84d3be978
commit
552c8adfd4
1 changed files with 1 additions and 1 deletions
|
@ -884,7 +884,7 @@ uint16_t Core::Inventory::calculateEquippedGearItemLevel()
|
|||
it++;
|
||||
}
|
||||
|
||||
return boost::algorithm::clamp( iLvlResult / 12, 0, 9999 );
|
||||
return boost::algorithm::clamp( iLvlResult / 13, 0, 9999 );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue