Use SortedDictionary for Highscores instead of a simple Dictionary
This commit is contained in:
parent
3e3cbc257e
commit
4833ccd65a
4 changed files with 6 additions and 6 deletions
|
@ -25,7 +25,7 @@ namespace Geekbot.net.WebApi.Controllers.Highscores
|
|||
return BadRequest(error);
|
||||
}
|
||||
|
||||
Dictionary<HighscoreUserDto, int> list;
|
||||
SortedDictionary<HighscoreUserDto, int> list;
|
||||
try
|
||||
{
|
||||
list = _highscoreManager.GetHighscoresWithUserData(body.Type, body.GuildId, body.Amount);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue