1
Fork 0
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:
GokuWeedLord 2017-12-11 00:40:52 +11:00
parent d84d3be978
commit 552c8adfd4

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