fix alias reference in tools

This commit is contained in:
Pedro Ivo Hudson 2024-02-14 11:33:35 -03:00
parent 242a1f4035
commit a4790bbfaa
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ generated += '|---|---|---|---\n'
for (const id in sortedGames) {
const game = sortedGames[id]
if (!game.alias) {
if (!game?.extra?.alias) {
game.alias = ' '
}
generated += '| ' + id.padEnd(10, ' ') + ' | ' + game.alias + ' | ' + game.name