mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-02-13 05:29:13 +01:00
Core/Players: fixed logic from last commit
This commit is contained in:
@@ -7245,10 +7245,10 @@ void Player::ModifyCurrency(uint32 id, int32 count, bool printLog/* = true*/, bo
|
||||
|
||||
// Patch 4.0.3a - Justice Points over the hard cap of 4000 will be converted to 47 silver and 50 copper per point.
|
||||
uint32 surplousJusticePoints = 0;
|
||||
if (totalCap && count > int32(totalCap))
|
||||
if (oldTotalCount + count > int32(totalCap))
|
||||
{
|
||||
if (id = CURRENCY_TYPE_JUSTICE_POINTS)
|
||||
surplousJusticePoints = (count - totalCap) / precision;
|
||||
surplousJusticePoints = (oldTotalCount + count - totalCap) / precision;
|
||||
count = totalCap;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user