mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 00:47:45 +00:00
Merge pull request #197 from GokuWeedLord/fix/itemlevelcalc
fix itemlevel calculation being incorrect
This commit is contained in:
commit
8728a4aae8
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