From f52f9b232209526c58f1323e6d23431e161b3ca1 Mon Sep 17 00:00:00 2001 From: Rob Stivanson Date: Tue, 7 May 2024 02:07:17 -0700 Subject: [PATCH] feat: add abiotic factor support (#563) --- 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 abf3ed6..7184788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ * Fix: BeamMP filter servers by address, not host (By @Rephot #558) * Palworld - Replace old and broken protocol with the new one (#560) * Nova-Life: Amboise - Added support. +* Abiotic Factor - Added Support. ## 5.0.0-beta.2 * Fixed support for projects using `require`. diff --git a/GAMES_LIST.md b/GAMES_LIST.md index 9e872b9..a0eb39f 100644 --- a/GAMES_LIST.md +++ b/GAMES_LIST.md @@ -4,6 +4,7 @@ | a2oa | ARMA 2: Operation Arrowhead | [Valve Protocol](#valve) | | aaa | ARMA: Armed Assault | | | aapg | America's Army: Proving Grounds | [Valve Protocol](#valve) | +| abioticfactor | Abiotic Factor | [Valve Protocol](#valve) | | actionsource | Action: Source | [Valve Protocol](#valve) | | acwa | ARMA: Cold War Assault | | | ahl | Action Half-Life | [Valve Protocol](#valve) | diff --git a/lib/games.js b/lib/games.js index f81569e..743d1da 100644 --- a/lib/games.js +++ b/lib/games.js @@ -1,4 +1,12 @@ export const games = { + abioticfactor: { + name: 'Abiotic Factor', + release_year: 2024, + options: { + port: 27015, + protocol: 'valve' + } + }, actionsource: { name: 'Action: Source', release_year: 2019,