mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 14:37:44 +00:00
Merge pull request #197 from GokuWeedLord/fix/itemlevelcalc
fix itemlevel calculation being incorrect
This commit is contained in:
commit
867227a624
1 changed files with 1 additions and 1 deletions
|
@ -884,7 +884,7 @@ uint16_t Core::Inventory::calculateEquippedGearItemLevel()
|
||||||
it++;
|
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