update mini ranking
Some checks failed
Deploy Backend / docker (ubuntu-latest) (push) Successful in 40s
Deploy Website / docker (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Lee
2024-10-19 15:28:32 +01:00
parent 7465f854e0
commit 0d182d3ff4
4 changed files with 16 additions and 8 deletions

View File

@ -66,7 +66,7 @@ export default class PlayerController {
params: { id: string; type: "global" | "country" };
}): Promise<AroundPlayerResponse> {
return {
players: await PlayerService.getAround(id, type),
players: await PlayerService.getPlayersAroundPlayer(id, type),
};
}
}

View File

@ -203,7 +203,7 @@ export class PlayerService {
* @param id the player to get around
* @param type the type to get around
*/
public static async getAround(id: string, type: AroundPlayer): Promise<ScoreSaberPlayerToken[]> {
public static async getPlayersAroundPlayer(id: string, type: AroundPlayer): Promise<ScoreSaberPlayerToken[]> {
const getRank = (player: ScoreSaberPlayerToken, type: AroundPlayer) => {
switch (type) {
case "global":