fix(tools/generate_games_list): add squad to blanket EOS inclusion

This commit is contained in:
CosminPerRam 2025-09-05 12:01:46 +03:00
parent 87f7c09705
commit f715b7fe5c

View file

@ -58,7 +58,7 @@ Object.entries(sortedGames).forEach(([id, game]) => {
if (['valve', 'dayz', 'sdtd'].includes(game.options.protocol)) { if (['valve', 'dayz', 'sdtd'].includes(game.options.protocol)) {
notes.push('[Valve Protocol](#valve)') notes.push('[Valve Protocol](#valve)')
} }
if (['epic', 'asa', 'theisleevrima', 'renown'].includes(game.options.protocol)) { if (['epic', 'asa', 'theisleevrima', 'renown', 'squad'].includes(game.options.protocol)) {
notes.push('[EOS Protocol](#epic)') notes.push('[EOS Protocol](#epic)')
} }
lineArray[HeaderType.Notes] = notes.join(', ') lineArray[HeaderType.Notes] = notes.join(', ')