Skip to content

Commit

Permalink
fix some rebalanced bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
DieterReinert committed May 5, 2024
1 parent ff29c33 commit 73f7180
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions play.pokemonshowdown.com/js/client-teambuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
if (this.curTeam.format.startsWith('gen9gpt')) {
this.curTeam.dex = Dex.mod('gen9gpt');
}
if (this.curTeam.format.startsWith('gen9rebalanced')) {
this.curTeam.dex = Dex.mod('gen9rebalanced');
}
// if (this.curTeam.format.includes('espionage')) {
// this.curTeam.dex = Dex.mod('gen9espionage');
// }
Expand Down Expand Up @@ -749,6 +752,9 @@
if (this.curTeam.format.startsWith('gen9gpt')) {
this.curTeam.dex = Dex.mod('gen9gpt');
}
if (this.curTeam.format.startsWith('gen9rebalanced')) {
this.curTeam.dex = Dex.mod('gen9rebalanced');
}
// if (this.curTeam.format.includes('espionage')) {
// this.curTeam.dex = Dex.mod('gen9espionage');
// }
Expand Down Expand Up @@ -1604,6 +1610,9 @@
if (this.curTeam.format.startsWith('gen9gpt')) {
this.curTeam.dex = Dex.mod('gen9gpt');
}
if (this.curTeam.format.startsWith('gen9rebalanced')) {
this.curTeam.dex = Dex.mod('gen9rebalanced');
}
// if (this.curTeam.format.includes('espionage')) {
// this.curTeam.dex = Dex.mod('gen9espionage');
// }
Expand Down

0 comments on commit 73f7180

Please sign in to comment.