@@ -593,9 +593,6 @@ abstract class BattleTypedSearch<T extends SearchType> {
593
593
if ( format . includes ( 'omnifield' ) ) {
594
594
this . dex = Dex . mod ( 'omnifield' as ID ) ;
595
595
}
596
- if ( format . includes ( 'rebalanced' ) ) {
597
- this . dex = Dex . mod ( 'gen9rebalanced' as ID ) ;
598
- }
599
596
if ( format . startsWith ( 'gpt' ) ) {
600
597
this . dex = Dex . mod ( 'gen9gpt' as ID ) ;
601
598
}
@@ -657,9 +654,6 @@ abstract class BattleTypedSearch<T extends SearchType> {
657
654
if ( format . includes ( 'worldscollide' ) ) {
658
655
this . formatType = 'worldscollide' ;
659
656
}
660
- if ( format . includes ( 'rebalanced' ) ) {
661
- this . formatType = 'rebalanced' ;
662
- }
663
657
if ( format . startsWith ( 'gpt' ) ) {
664
658
this . formatType = 'gpt' ;
665
659
}
@@ -690,6 +684,12 @@ abstract class BattleTypedSearch<T extends SearchType> {
690
684
if ( format . includes ( 'fields' ) ) {
691
685
this . formatType = 'omnifield' ;
692
686
}
687
+ if ( format . includes ( 'rebalanced' ) ) {
688
+ this . dex = Dex . mod ( 'gen9rebalanced' as ID ) ;
689
+ }
690
+ if ( format . includes ( 'rebalanced' ) ) {
691
+ this . formatType = 'rebalanced' ;
692
+ }
693
693
if ( format . endsWith ( 'draft' ) ) format = format . slice ( 0 , - 5 ) as ID ;
694
694
this . format = format ;
695
695
@@ -1046,8 +1046,6 @@ class BattlePokemonSearch extends BattleTypedSearch<'pokemon'> {
1046
1046
table = table [ 'gen9gpt' ] ;
1047
1047
}
1048
1048
1049
- console . log ( 'table.tiers' ) ;
1050
- console . log ( table . tiers ) ;
1051
1049
if ( ! table . tierSet ) {
1052
1050
table . tierSet = table . tiers . map ( ( r : any ) => {
1053
1051
if ( typeof r === 'string' ) return [ 'pokemon' , r ] ;
0 commit comments