diff options
author | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 17:36:18 -0600 |
---|---|---|
committer | mat <27899617+mat-1@users.noreply.github.com> | 2021-02-13 17:36:18 -0600 |
commit | 6531446675b54522ed320c89b6b6e803e8ab8999 (patch) | |
tree | 90cf35cf363d3cc5bddae2ae7807bd8b442ce75c /build | |
parent | 987fb43f5f0a724918c4e6094de08cdfbcb2ddf6 (diff) | |
download | skyblock-api-6531446675b54522ed320c89b6b6e803e8ab8999.tar.gz skyblock-api-6531446675b54522ed320c89b6b6e803e8ab8999.tar.bz2 skyblock-api-6531446675b54522ed320c89b6b6e803e8ab8999.zip |
optimize inventories
don't parse nbt for inventories that it doesn't need to
Diffstat (limited to 'build')
-rw-r--r-- | build/cleaners/skyblock/inventory.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/cleaners/skyblock/inventory.js b/build/cleaners/skyblock/inventory.js index 1927add..16dcaec 100644 --- a/build/cleaners/skyblock/inventory.js +++ b/build/cleaners/skyblock/inventory.js @@ -48,6 +48,7 @@ exports.INVENTORIES = { }; async function cleanInventories(data) { var _a; + console.log('cleanInventories', data.uuid); const cleanInventories = {}; for (const cleanInventoryName in exports.INVENTORIES) { const hypixelInventoryName = exports.INVENTORIES[cleanInventoryName]; |