fix(Core/Arena): Make personal rating season-aware on team join (#24755)
Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
parent
556c01fc91
commit
82a22cd021
1 changed files with 2 additions and 0 deletions
|
|
@ -132,6 +132,8 @@ bool ArenaTeam::AddMember(ObjectGuid playerGuid)
|
|||
|
||||
if (sWorld->getIntConfig(CONFIG_ARENA_START_PERSONAL_RATING) > 0)
|
||||
personalRating = sWorld->getIntConfig(CONFIG_ARENA_START_PERSONAL_RATING);
|
||||
else if (sArenaSeasonMgr->GetCurrentSeason() < 6)
|
||||
personalRating = 1500;
|
||||
else if (GetRating() >= 1000)
|
||||
personalRating = 1000;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue