diff options
author | mat <github@matdoes.dev> | 2022-05-03 20:01:26 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-05-03 20:01:26 -0500 |
commit | fc2003e704aef7bef7248903a3eafd8ffe1dce44 (patch) | |
tree | 1aef7c11b12660de3dfb8207a008e7dd476246d8 | |
parent | 52c137665a9af78c0d509aaea5236f54169ddaf2 (diff) | |
download | skyblock-api-fc2003e704aef7bef7248903a3eafd8ffe1dce44.tar.gz skyblock-api-fc2003e704aef7bef7248903a3eafd8ffe1dce44.tar.bz2 skyblock-api-fc2003e704aef7bef7248903a3eafd8ffe1dce44.zip |
Update max minion tier and add a todo
-rw-r--r-- | src/hypixel.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hypixel.ts b/src/hypixel.ts index 7bc5ed3..c6bfb3c 100644 --- a/src/hypixel.ts +++ b/src/hypixel.ts @@ -34,7 +34,8 @@ export type Included = 'profiles' | 'player' | 'stats' | 'inventories' | undefin export const saveInterval = 60 * 3 * 1000 // the highest level a minion can be -export const maxMinion = 11 +// TODO: have this be auto updated +export const maxMinion = 12 /** * Send a request to api.hypixel.net using a random key, clean it up to be more useable, and return it |