mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-01 10:03:47 +00:00
fix(Core/Arena): Fix LegacyArenaPoints logic (#16967)
This commit is contained in:
@@ -658,7 +658,7 @@ uint32 ArenaTeam::GetPoints(uint32 memberRating)
|
|||||||
|
|
||||||
if (rating <= 1500)
|
if (rating <= 1500)
|
||||||
{
|
{
|
||||||
if (sWorld->getIntConfig(CONFIG_ARENA_SEASON_ID) < 6 && sWorld->getIntConfig(CONFIG_LEGACY_ARENA_POINTS_CALC))
|
if (sWorld->getIntConfig(CONFIG_ARENA_SEASON_ID) < 6 && !sWorld->getIntConfig(CONFIG_LEGACY_ARENA_POINTS_CALC))
|
||||||
points = (float)rating * 0.22f + 14.0f;
|
points = (float)rating * 0.22f + 14.0f;
|
||||||
else
|
else
|
||||||
points = 344;
|
points = 344;
|
||||||
|
|||||||
Reference in New Issue
Block a user