Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DieterReinert committed Feb 24, 2024
1 parent 0c5f0b4 commit 52cca26
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions play.pokemonshowdown.com/js/client-teambuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1237,6 +1237,7 @@
},
renderSet: function (set, i) {
var species = this.curTeam.dex.species.get(set.species);
console.log(species);
var isLetsGo = this.curTeam.format.includes('letsgo');
var isBDSP = this.curTeam.format.includes('bdsp');
var isNatDex = this.curTeam.format.includes('nationaldex') || this.curTeam.format.includes('natdex');
Expand Down
2 changes: 0 additions & 2 deletions play.pokemonshowdown.com/src/battle-dex-search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1105,8 +1105,6 @@ class BattlePokemonSearch extends BattleTypedSearch<'pokemon'> {
if (!filters) return true;
if (row[0] !== 'pokemon') return true;
const species = this.dex.species.get(row[1]);
console.log('filter');
console.log(species);
for (const [filterType, value] of filters) {
switch (filterType) {
case 'type':
Expand Down

0 comments on commit 52cca26

Please sign in to comment.