Remove LobbyServer scores limit
This commit is contained in:
@@ -110,7 +110,7 @@ namespace LobbyServer
|
||||
|
||||
private void ScoreRequest(CommandStream stream, CommandPacket packet)
|
||||
{
|
||||
var scores = ScoresManager.Scores.Take(10).Select(x => x.ToString());
|
||||
var scores = ScoresManager.Scores.Select(x => x.ToString());
|
||||
string data = string.Join('@', scores);
|
||||
|
||||
stream.Send(new CommandPacket(Command.ScoreRequest, data));
|
||||
|
||||
Reference in New Issue
Block a user