Created
June 14, 2011 15:13
-
-
Save Jildor/1025103 to your computer and use it in GitHub Desktop.
src/server/game/Battlegrounds/ArenaTeam.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for (MemberList::const_iterator itr = Members.begin(); itr != Members.end(); ++itr) | |
{ | |
// The player participated in enough games, update his points | |
uint32 pointsToAdd = 0; | |
if (itr->WeekGames >= requiredGames) | |
- pointsToAdd = GetPoints(itr->PersonalRating); | |
+ //pointsToAdd = GetPoints(itr->PersonalRating); | |
+ pointsToAdd = GetPoints(itr->PersonalRating) + Stats.WeekGames *3; | |
std::map<uint32, uint32>::iterator plr_itr = playerPoints.find(GUID_LOPART(itr->Guid)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment