From 7ba43cc07b9cab938b26822bf95cfeb1cd8d28cb Mon Sep 17 00:00:00 2001 From: Index Date: Mon, 8 Jul 2024 18:33:00 -0500 Subject: [PATCH] minor: up collectibles inv tab page limit from 3 to 12 --- js/account/inventory.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/account/inventory.js b/js/account/inventory.js index c2050e5..97040e5 100755 --- a/js/account/inventory.js +++ b/js/account/inventory.js @@ -265,8 +265,8 @@ async function CollectibleCategory() { Collectibles.push(...InitialInventory.inventory.filter((x) => x.asset.isLimited === true)) if (InitialInventory.pages > 1) { - if (InitialInventory.pages > 3) { - InitialInventory.pages = 3 + if (InitialInventory.pages > 12) { + InitialInventory.pages = 12 } for (let page = 2; page < InitialInventory.pages; page++) {