From 6d02caa2de82eb486c6ce93487afd329b1b3e26e Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Sat, 31 Oct 2020 20:29:16 -0600 Subject: [PATCH] Add support for Gen 3 Doubles formats (#1650) --- 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 9ed1cd6f1..f8ef25e2a 100755 --- a/build-tools/build-indexes +++ b/build-tools/build-indexes @@ -286,7 +286,7 @@ process.stdout.write("Building `data/teambuilder-tables.js`... "); let buf = '// DO NOT EDIT - automatically built with build-tools/build-indexes\n\n'; // process.stdout.write("\n "); - for (const genIdent of [8.3, 8.2, 8.1, 8, -8, 7.3, 7.1, 7, -7.5, -7, 6.3, 6, -6, 5.3, 5, -5, 5.3, 4, -4, 3.3, 3, 2.3, 2, 1.3, 1]) { + for (const genIdent of [8.3, 8.2, 8.1, 8, -8, 7.3, 7.1, 7, -7.5, -7, 6.3, 6, -6, 5.3, 5, -5, 5.3, 4, -4, 3.3, 3, -3, 2.3, 2, 1.3, 1]) { const isLetsGo = (genIdent === 7.1); const isMetBattle = (genIdent === 8.2); const isNFE = (('' + genIdent).endsWith('.3'));