add alias as an extra field

This commit is contained in:
Pedro Ivo Hudson 2024-02-09 21:15:36 -03:00
parent c317cfc760
commit c9d8e00139
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ export const lookup = (options) => {
let game = games[type]
Object.keys(games).forEach((id) => {
if (games[id].alias) game = games[id]
if (games[id]?.extra?.alias) game = games[id]
})
if (options.checkOldIDs) {