Peppy you should avoid useless scores sorting both server-side and client-side :
Example: if Im sorting scores by "country" and I add the hidden mod, then it will recalculate scores list, which will be the same.
Since it takes a second or two to render, I bet the server does the sorting and send it to me again (would take a millisecond else, if it were client-side rendering).
Remove those useless calculs, it is not a problem for the client if it still does them, but that could avoid lot of work to the servers.
Good luck : )
Example: if Im sorting scores by "country" and I add the hidden mod, then it will recalculate scores list, which will be the same.
Since it takes a second or two to render, I bet the server does the sorting and send it to me again (would take a millisecond else, if it were client-side rendering).
Remove those useless calculs, it is not a problem for the client if it still does them, but that could avoid lot of work to the servers.
Good luck : )