diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-14 19:19:36 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-14 19:19:36 -0600 |
commit | 100e863740ea4fde199f674b348dcf13a6d6ff81 (patch) | |
tree | 280e5086fb50753bc44ccfb0d33a38e95652b01f /src/hypixelCached.ts | |
parent | fd2348bf16c55422ec664e6677b636998eccc71c (diff) | |
download | skyblock-api-100e863740ea4fde199f674b348dcf13a6d6ff81.tar.gz skyblock-api-100e863740ea4fde199f674b348dcf13a6d6ff81.tar.bz2 skyblock-api-100e863740ea4fde199f674b348dcf13a6d6ff81.zip |
add rank to basic member
Diffstat (limited to 'src/hypixelCached.ts')
-rw-r--r-- | src/hypixelCached.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index 35f1cbb..1125aa8 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -139,7 +139,8 @@ export async function fetchSkyblockProfiles(playerUuid: string): Promise<CleanPr uuid: m.uuid, username: m.username, first_join: m.first_join, - last_save: m.last_save + last_save: m.last_save, + rank: m.rank } }) } |