minor: up collectibles inv tab page limit from 3 to 12
This commit is contained in:
parent
c7df8cbea3
commit
7ba43cc07b
1 changed files with 2 additions and 2 deletions
|
|
@ -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++) {
|
||||
|
|
|
|||
Reference in a new issue