aboutsummaryrefslogtreecommitdiff
path: root/src/cleaners/skyblock/inventory.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/cleaners/skyblock/inventory.ts')
-rw-r--r--src/cleaners/skyblock/inventory.ts11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/cleaners/skyblock/inventory.ts b/src/cleaners/skyblock/inventory.ts
index ed9b5ed..76acf60 100644
--- a/src/cleaners/skyblock/inventory.ts
+++ b/src/cleaners/skyblock/inventory.ts
@@ -91,14 +91,15 @@ export async function cleanInventories(data: any): Promise<Inventories> {
const hypixelInventoryName = INVENTORIES[cleanInventoryName]
const encodedInventoryContents = data[hypixelInventoryName]?.data
let inventoryContents: Inventory
- if (encodedInventoryContents)
+ if (encodedInventoryContents) {
inventoryContents = await cleanInventory(encodedInventoryContents)
- if (cleanInventoryName === 'armor')
- // the armor is sent from boots to head, the opposite makes more sense
- inventoryContents.reverse()
+ if (cleanInventoryName === 'armor')
+ // the armor is sent from boots to head, the opposite makes more sense
+ inventoryContents.reverse()
- cleanInventories[cleanInventoryName] = inventoryContents
+ cleanInventories[cleanInventoryName] = inventoryContents
+ }
}
return cleanInventories
} \ No newline at end of file