From 7e86eb940c410bfd8ed16c05628c202e60ed0f6e Mon Sep 17 00:00:00 2001 From: KirbyRider1337 <39121695+KirbyRider1337@users.noreply.github.com> Date: Mon, 25 Dec 2023 03:05:38 -0500 Subject: [PATCH] I think I located the source of that bug --- build-tools/build-indexes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-tools/build-indexes b/build-tools/build-indexes index e773ca269..5e1a835f5 100755 --- a/build-tools/build-indexes +++ b/build-tools/build-indexes @@ -1142,7 +1142,7 @@ function buildTeambuilderTables() { } } } - const sliceTiers = ["OU", "AG", "Uber", "UU", "(UU)", "RU", "NU", "(NU)", "PU", "(PU)", "ZUBL", "ZU", "NFE", "LC", "DOU", "DUU", "(DUU)", "New", "Legal", "Regular", "Restricted Legendary", "CAP LC"]; + const sliceTiers = ["OU", "AG", "Uber", "UU", "(UU)", "RU", "NU", "(NU)", "PU", "(PU)", "ZU", "NFE", "LC", "DOU", "DUU", "(DUU)", "New", "Legal", "Regular", "Restricted Legendary", "CAP LC"]; function buildTiers(modid, tierTable, tiers, customTiers, formatSlices, tierOrder) { for (const tier of tierOrder) { if (ModConfig[modid].excludeStandardTiers) break; @@ -1230,7 +1230,7 @@ function buildTeambuilderTables() { } // Find any nonstandard tiers used by this mod const standardTiers = ['uber', 'ou', 'uubl', 'uu', 'rubl', 'ru', 'nubl', 'nu', 'publ', - 'pu', 'zu', 'nfe', 'lcuber', 'lc', 'cap', 'caplc', 'capnfe', 'ag', 'duber', 'dou', + 'pu', 'zubl', 'zu', 'nfe', 'lcuber', 'lc', 'cap', 'caplc', 'capnfe', 'ag', 'duber', 'dou', 'dbl', 'duu', 'dnu', 'illegal', 'unreleased']; if (!ModConfig[modConfigId].customTiers) ModConfig[modConfigId].customTiers = []; if (!ModConfig[modConfigId].customDoublesTiers) ModConfig[modConfigId].customDoublesTiers = [];