Skip to content

Commit

Permalink
characterSkip Rin Racer
Browse files Browse the repository at this point in the history
  • Loading branch information
simon300000 committed Jun 28, 2024
1 parent 2de573d commit b03b075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ let albumsObject: ReturnType<typeof parseAlbums>
let ce: { c: Record<AvailableLocales, string[]>, e: Record<AvailableLocales, string[]> }

const parseCe = async () => {
const c = Object.fromEntries(await Promise.all(availableLocales.map(async l => [l, JSON.parse(String(await readFile(join(__dirname, 'extra', `character_${l}.json`)))).map(({ cosName }) => cosName)])))
const c = Object.fromEntries(await Promise.all(availableLocales.map(async l => [l, JSON.parse(String(await readFile(join(__dirname, 'extra', `character_${l}.json`)))).map(({ characterName, cosName }) => `${characterName}·${cosName}`)])))
const e = Object.fromEntries(await Promise.all(availableLocales.map(async l => [l, JSON.parse(String(await readFile(join(__dirname, 'extra', `elfin_${l}.json`)))).map(({ name }) => name)])))
ce = { c, e }
}
Expand Down
2 changes: 1 addition & 1 deletion api/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const SPIDER_PARALLEL = 256

export const characterSkip = ['1', '2', '12', '13', '14', '19', '22', '25', '26']
export const characterSkip = ['1', '2', '12', '13', '14', '19', '22', '25', '26', '27']
export const elfinSkip = ['3', '8', '10']

0 comments on commit b03b075

Please sign in to comment.