From 675c5ee4bc3904515325fa983991fc62836d6481 Mon Sep 17 00:00:00 2001 From: CosminPerRam Date: Sun, 15 Sep 2024 21:39:22 +0300 Subject: [PATCH] feat: add World of Padman support (#636) * feat: add wop entry * docs: update CHANGELOG and GAMES_LIST --- 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 70167642..aa0c6457 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## To Be Released... ## 5.X.Y * Feat: Replaced `punycode` package usage with `url.domainToASCII` (#630). +* Feat: World of Padman (2007) - Added support (#636) ## 5.1.3 * Fix: `Deus Ex` using the wrong protocol (#621) diff --git a/GAMES_LIST.md b/GAMES_LIST.md index a7f2e4da..4502dca7 100644 --- a/GAMES_LIST.md +++ b/GAMES_LIST.md @@ -342,6 +342,7 @@ | warsow | Warsow | | | wet | Wolfenstein: Enemy Territory | | | wolfenstein | Wolfenstein | | +| wop | World Of Padman | | | wot | Wheel of Time | | | wurmunlimited | Wurm Unlimited | [Valve Protocol](#valve) | | xonotic | Xonotic | | diff --git a/lib/games.js b/lib/games.js index dbccc879..54e82f4c 100644 --- a/lib/games.js +++ b/lib/games.js @@ -3318,6 +3318,14 @@ export const games = { protocol: 'xonotic' } }, + wop: { + name: 'World Of Padman', + release_year: 2007, + options: { + port: 26000, + protocol: 'quake3' + } + }, xpandrally: { name: 'Xpand Rally', release_year: 2004,