freethenation / node-trueskill

JavaScript implementation of TrueSkill player ranking
Apache License 2.0
48 stars 5 forks source link

Adding a second game? #5

Closed andrewbrereton closed 8 years ago

andrewbrereton commented 8 years ago

Hi, thanks for this. I am creating a leaderboard and I'm wondering the proper way to add multiple games.

At the moment, I'm appending the results of the second game to the players rank value.

Is this correct?

richardklafter commented 8 years ago

Ya just update players ranks and call trueskill.AdjustPlayers for each additional game

andrewbrereton commented 8 years ago

Perfect, thanks.