From 085dfabd9bc53c730ac459edf5c28088677adfc2 Mon Sep 17 00:00:00 2001 From: Mia <49593536+mia-pi-git@users.noreply.github.com> Date: Thu, 16 Jul 2026 23:21:54 -0500 Subject: [PATCH] Remove privacy toggle in immediate team upload button --- play.pokemonshowdown.com/src/oldclient/client-teambuilder.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/play.pokemonshowdown.com/src/oldclient/client-teambuilder.js b/play.pokemonshowdown.com/src/oldclient/client-teambuilder.js index 119ca49af..05b92d0e0 100644 --- a/play.pokemonshowdown.com/src/oldclient/client-teambuilder.js +++ b/play.pokemonshowdown.com/src/oldclient/client-teambuilder.js @@ -906,7 +906,7 @@ if (this.curTeam.teamid) buf.push(this.curTeam.teamid); buf.push(this.curTeam.name); buf.push(this.curTeam.format); - buf.push(this.$('input[name=teamprivacy]').get(0).checked ? 1 : 0); + buf.push(1); var team = Storage.exportTeam(this.curSetList); if (!team) return app.addPopupMessage("Add a Pokémon to your team before uploading it!"); buf.push(team); @@ -1271,8 +1271,6 @@ buf += ''; buf += ''; buf += '

'; - var privacy = (Storage.prefs('uploadprivacy') || typeof Storage.prefs('uploadprivacy') !== 'boolean') ? 'checked' : ''; - buf += ' '; buf += '

'; buf += '

'; if (this.curTeam.format.includes('vgc')) {