diff options
author | mat <github@matdoes.dev> | 2021-08-01 20:03:57 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-08-01 20:03:57 -0500 |
commit | 3c60dd9cfd386e57e8445166ab41a92b77777f7e (patch) | |
tree | 10a2c68c8c5f388c83d1e88fa923d9c9aaf40272 /src/hypixelCached.ts | |
parent | c5f65b73a863f3ee7f7206321484e1268e056b1a (diff) | |
download | skyblock-api-3c60dd9cfd386e57e8445166ab41a92b77777f7e.tar.gz skyblock-api-3c60dd9cfd386e57e8445166ab41a92b77777f7e.tar.bz2 skyblock-api-3c60dd9cfd386e57e8445166ab41a92b77777f7e.zip |
add #1 leaderboards count leaderboard
Diffstat (limited to 'src/hypixelCached.ts')
-rw-r--r-- | src/hypixelCached.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index b0fc1db..51dca5f 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -201,7 +201,7 @@ export async function fetchBasicPlayer(user: string): Promise<CleanPlayer | null const player = await fetchPlayer(playerUuid) if (!player) { - console.debug('no player? this should never happen', user, playerUuid) + console.debug('no player? this should never happen, perhaps the uuid is invalid or the player hasn\'t played hypixel', playerUuid) return null } |