Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
extreme4all committed Feb 3, 2024
1 parent 7d16d44 commit 9c15f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/cogs/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ async def get_player_data(label_id: int, limit: int = 5000):

async def get_hiscore_data(label_id: int, limit: int = 5000):
url = "http://private-api-svc.bd-prd.svc:5000/v2/highscore/latest" # TODO: fix hardcoded
params = {"player_id": id, "many": 1, "limit": limit}
params = {"player_id": 1, "many": 1, "limit": limit}

# Initialize a list to store hiscore data
hiscores = []
Expand Down

0 comments on commit 9c15f7c

Please sign in to comment.