From b1dcb90a8ca07c7c56fd4b5fee7e85dd60be24c2 Mon Sep 17 00:00:00 2001 From: Mia <49593536+mia-pi-git@users.noreply.github.com> Date: Fri, 8 Aug 2025 22:00:50 -0500 Subject: [PATCH] Increase max box size to 50 For parity with the teams database's max team size. --- play.pokemonshowdown.com/js/client-teambuilder.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play.pokemonshowdown.com/js/client-teambuilder.js b/play.pokemonshowdown.com/js/client-teambuilder.js index 73722d942..4b6d6e138 100644 --- a/play.pokemonshowdown.com/js/client-teambuilder.js +++ b/play.pokemonshowdown.com/js/client-teambuilder.js @@ -1169,7 +1169,7 @@ if (format && format.slice(0, 3) !== 'gen') format = 'gen6' + format; if (format && format.endsWith('-box')) { format = format.slice(0, -4); - capacity = 24; + capacity = 50; } name = $.trim(name.substr(bracketIndex + 1)); }