From f715b7fe5cf0b13fdea6a6b33d51e056a6963c2b Mon Sep 17 00:00:00 2001 From: CosminPerRam Date: Fri, 5 Sep 2025 12:01:46 +0300 Subject: [PATCH] fix(tools/generate_games_list): add squad to blanket EOS inclusion --- tools/generate_games_list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/generate_games_list.js b/tools/generate_games_list.js index 42eab64..5d0151d 100644 --- a/tools/generate_games_list.js +++ b/tools/generate_games_list.js @@ -58,7 +58,7 @@ Object.entries(sortedGames).forEach(([id, game]) => { if (['valve', 'dayz', 'sdtd'].includes(game.options.protocol)) { 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)') } lineArray[HeaderType.Notes] = notes.join(', ')