From c99981e81d1d35fdb88ca3ae0a954d6471316cd9 Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Wed, 1 Nov 2023 12:36:16 -0600 Subject: [PATCH] FIx LC teambuilder --- build-tools/build-indexes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/build-indexes b/build-tools/build-indexes index 05cf943d4b..56292bd474 100755 --- a/build-tools/build-indexes +++ b/build-tools/build-indexes @@ -401,7 +401,7 @@ process.stdout.write("Building `data/teambuilder-tables.js`... "); if (!species.nfe || species.prevo || lcBanlist.isBannedSpecies(species)) { tier = 'Illegal'; } - if (/^([OURNP]U(BL)?|Uber|AG)$/g.test(tier) && tier !== 'Illegal') { + if (/^([OURNPZ]U(BL)?|Uber|AG)$/g.test(tier) && tier !== 'Illegal') { tier = 'LC'; } return tier;