1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-09 04:07:46 +00:00

fix itemlevel calc

This commit is contained in:
GokuWeedLord 2017-12-11 00:40:52 +11:00
parent 5913be0a31
commit e44bf87264

View file

@ -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 );
}