From d71b8f02436ea4582ab038ae7d1b121a4e81e11b Mon Sep 17 00:00:00 2001 From: CosminPerRam Date: Tue, 3 Sep 2024 00:03:14 +0300 Subject: [PATCH] feat: add serious sam the second encounter support (#625) * feat: add serious sam the second encounter support * docs: add game to GAMES_LIST and update CHANGELOG with pr number --- CHANGELOG.md | 1 + GAMES_LIST.md | 1 + lib/games.js | 9 +++++++++ 3 files changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2b315c..f7c5900 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 5.X.Y * Fix: `Deus Ex` using the wrong protocol (#621) * Fix: `Soldier ff Fortune` using the wrong protocol (#623) +* Feat: Serious Sam: The Second Encounter (2002) - Added support (#625) * Feat: For the Quake2 protocol `version`'s field, also look for `version` in the raw object * Feat: Add option `requestPlayers`, defaults to `true`. * Added support for Icarus using valve protocol (By @xCausxn #626) diff --git a/GAMES_LIST.md b/GAMES_LIST.md index 4ac85a5..2914802 100644 --- a/GAMES_LIST.md +++ b/GAMES_LIST.md @@ -270,6 +270,7 @@ | soulmask | Soulmask | [Valve Protocol](#valve) | | spaceengineers | Space Engineers | [Valve Protocol](#valve) | | squad | Squad | [Valve Protocol](#valve) | +| sstse | Serious Sam: The Second Encounter | | | stalker | S.T.A.L.K.E.R. | | | starbound | Starbound | [Valve Protocol](#valve) | | starmade | StarMade | | diff --git a/lib/games.js b/lib/games.js index 788a86e..dbccc87 100644 --- a/lib/games.js +++ b/lib/games.js @@ -2585,6 +2585,15 @@ export const games = { protocol: 'valve' } }, + sstse: { + name: 'Serious Sam: The Second Encounter', + release_year: 2002, + options: { + port: 25600, + port_query_offset: 1, + protocol: 'gamespy1' + } + }, theship: { name: 'The Ship', release_year: 2006,