update mini ranking
This commit is contained in:
@ -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),
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -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":
|
||||
|
Reference in New Issue
Block a user