mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
Convert string to int conversion in the lobby-leaderboard.
This was SVN commit r17921.
This commit is contained in:
parent
91e8248273
commit
10b6022557
1 changed files with 1 additions and 1 deletions
|
|
@ -479,7 +479,7 @@ function updateLeaderboard()
|
|||
{
|
||||
list_name.push(boardList[i].name);
|
||||
list_rating.push(boardList[i].rating);
|
||||
list_rank.push(i+1);
|
||||
list_rank.push(+i+1);
|
||||
list.push(boardList[i].name);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue