diff options
author | mat <github@matdoes.dev> | 2021-12-28 19:32:10 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-12-28 19:32:10 -0600 |
commit | 3703a3b53efae8e1f3de0029f2d1d5499fdc0fdd (patch) | |
tree | ced5aa945f31a40259fcb8c625c53742a058db76 /build | |
parent | 20800161a5d70b01a8d9a0345c985c75c5865219 (diff) | |
download | skyblock-api-3703a3b53efae8e1f3de0029f2d1d5499fdc0fdd.tar.gz skyblock-api-3703a3b53efae8e1f3de0029f2d1d5499fdc0fdd.tar.bz2 skyblock-api-3703a3b53efae8e1f3de0029f2d1d5499fdc0fdd.zip |
fix issue with api key
Diffstat (limited to 'build')
-rw-r--r-- | build/hypixelApi.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/hypixelApi.js b/build/hypixelApi.js index f29471a..35c3119 100644 --- a/build/hypixelApi.js +++ b/build/hypixelApi.js @@ -20,7 +20,8 @@ export function chooseApiKey() { // find the api key with the lowest amount of uses let bestKeyUsage = null; let bestKey = null; - for (let key of shuffle(apiKeys.slice())) { + // we limit to 5 api keys because otherwise they get automatically banned + for (let key of shuffle(apiKeys.slice(0, 5))) { const keyUsage = apiKeyUsage[key]; // if the key has never been used before, use it if (!keyUsage) |