diff options
Diffstat (limited to 'src/hypixelCached.ts')
-rw-r--r-- | src/hypixelCached.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index a2600f2..e8195fb 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -248,7 +248,8 @@ export async function fetchSkyblockProfiles(playerUuid: string): Promise<CleanPr rank: m.rank, left: m.left } - }) + }), + mode: profile.mode } basicProfiles.push(basicProfile) } @@ -381,7 +382,8 @@ export async function fetchBasicProfileFromUuid(profileUuid: string): Promise<Cl firstJoin: m.firstJoin, rank: m.rank, })), - name: profile.name + name: profile.name, + mode: profile.mode } } // TODO: cache this |