Skip to content

Commit

Permalink
Import: Fix BSS typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thejetou committed Nov 10, 2023
1 parent ccdf7b3 commit 36b4034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion import/src/set-import.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ async function importGen(
const statsIgnore: {[specie: string]: Set<ID>} = {};
for (const [specieName, formats] of Object.entries(dexSets)) {
for (let [formatID, sets] of Object.entries(formats) as unknown as [ID, DexSet][]) {
if (formatID === 'vgc2023' || formatID === 'battlestadimsingles') {
if (formatID === 'vgc2023' || formatID === 'battlestadiumsingles') {
formatID = `${formatID}regulatione` as ID;
}
formatID = `gen${gen.num}${formatID}` as ID;
Expand Down

0 comments on commit 36b4034

Please sign in to comment.