From d66fe6baf48d1807aad5d7feb0b58fd8f48eca84 Mon Sep 17 00:00:00 2001 From: Paul Hansen Date: Mon, 25 Nov 2024 01:35:12 -0600 Subject: [PATCH] Change the app id for the forest so it doesn't fail Changes it to use the app id of the game instead of the dedicated server. --- crates/lib/src/games/definitions.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lib/src/games/definitions.rs b/crates/lib/src/games/definitions.rs index 55f1453..0d5a139 100644 --- a/crates/lib/src/games/definitions.rs +++ b/crates/lib/src/games/definitions.rs @@ -124,7 +124,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! { "soulmask" => game!("Soulmask", 27015, Protocol::Valve(Engine::new(2_646_460))), "serioussam" => game!("Serious Sam", 25601, Protocol::Gamespy(GameSpyVersion::One)), "squad" => game!("Squad", 27165, Protocol::Valve(Engine::new(393_380))), - "theforest" => game!("The Forest", 27016, Protocol::Valve(Engine::new(556_450))), + "theforest" => game!("The Forest", 27016, Protocol::Valve(Engine::new(242_760))), "thefront" => game!("The Front", 27015, Protocol::Valve(Engine::new(2_285_150))), "teamfortress2" => game!("Team Fortress 2", 27015, Protocol::Valve(Engine::new(440))), "tfc" => game!("Team Fortress Classic", 27015, Protocol::Valve(Engine::new_gold_src(false))),