diff --git a/src/main/java/cc/fascinated/controller/ScoresController.java b/src/main/java/cc/fascinated/controller/ScoresController.java index 8ad129e..c618c68 100644 --- a/src/main/java/cc/fascinated/controller/ScoresController.java +++ b/src/main/java/cc/fascinated/controller/ScoresController.java @@ -30,7 +30,7 @@ public class ScoresController { /** * A GET mapping to retrieve the top - * 100 scores for a platform + * 50 scores for a platform * * @param platform the platform to get the scores from * @return the scores @@ -39,7 +39,7 @@ public class ScoresController { @ResponseBody @GetMapping(value = "/top/{platform}") public ResponseEntity> getTopScores(@PathVariable String platform) { - return ResponseEntity.ok(trackedScoreService.getTopScores(Platform.Platforms.getPlatform(platform), 100)); + return ResponseEntity.ok(trackedScoreService.getTopScores(Platform.Platforms.getPlatform(platform), 50)); } /**