From e90e4e37c71f3feaa17865faf4bb4b4e328301b1 Mon Sep 17 00:00:00 2001 From: Vito0912 <86927734+Vito0912@users.noreply.github.com> Date: Thu, 1 Feb 2024 20:30:42 +0100 Subject: [PATCH] Added Farming Simulator 2019 support --- CHANGELOG.md | 1 + GAMES_LIST.md | 1 + lib/games.js | 8 ++++++++ 3 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4b2c56..d75a350 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Eco - Fixed querying servers using reverse queries and player names (By @Vito0912 #526) * Factorio (2016) - Added support (By @Vito0912 #527) * Farming Simulator 22 (2021) - Added support (By @Vito0912 #531) +* Farming Simulator 19 (2018) - Added support (By @Vito0912 #531) ## 5.0.0-beta.2 * Fixed support for projects using `require`. diff --git a/GAMES_LIST.md b/GAMES_LIST.md index 99bd81e..f23ad4e 100644 --- a/GAMES_LIST.md +++ b/GAMES_LIST.md @@ -122,6 +122,7 @@ | factorio | Factorio | | | farcry | Far Cry | | | farcry2 | Far Cry 2 | | +| farmingsimulator2019 | Farming Simulator 2019 | [Notes](#farmingsimulator) | | farmingsimulator2022 | Farming Simulator 2022 | [Notes](#farmingsimulator) | | fear | F.E.A.R. | | | ffow | Frontlines: Fuel of War | | diff --git a/lib/games.js b/lib/games.js index 9725826..19014ef 100644 --- a/lib/games.js +++ b/lib/games.js @@ -1186,6 +1186,14 @@ export const games = { protocol: 'ase' } }, + farmingsimulator2019: { + name: 'Farming Simulator 2019', + release_year: 2021, + options: { + port: 8080, + protocol: 'farmingsimulator' + } + }, farmingsimulator2022: { name: 'Farming Simulator 2022', release_year: 2021,