diff --git a/GAMES.md b/GAMES.md index 3a46935..19b2439 100644 --- a/GAMES.md +++ b/GAMES.md @@ -90,7 +90,7 @@ requirements/information. | Pirates, Vikings, and Knights II | PVAK2 | Valve | | | PixARK | PIXARK | Valve | | | Ark: Survival Ascended | ASA | Epic | Available on the 'tls' feature | -| Aliens vs. Predator | AVP | Valve | | +| Aliens vs. Predator 2010 | AVP | Valve | | ## Planned to add support: diff --git a/crates/lib/CHANGELOG.md b/crates/lib/CHANGELOG.md index 64147f6..9b965ae 100644 --- a/crates/lib/CHANGELOG.md +++ b/crates/lib/CHANGELOG.md @@ -11,7 +11,7 @@ Games: - [PixARK](https://store.steampowered.com/app/593600/PixARK/) support. - [Ark: Survival Ascended](https://store.steampowered.com/app/2399830/ARK_Survival_Ascended/) support, note: not yet in the games definitions. -- [Aliens vs. Predator](https://store.steampowered.com/app/10680/Aliens_vs_Predator/) support. +- [Aliens vs. Predator 2010](https://store.steampowered.com/app/10680/Aliens_vs_Predator/) support. Protocols: diff --git a/crates/lib/src/games/definitions.rs b/crates/lib/src/games/definitions.rs index 7991bc3..6c5af9c 100644 --- a/crates/lib/src/games/definitions.rs +++ b/crates/lib/src/games/definitions.rs @@ -54,7 +54,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! { "asrd" => game!("Alien Swarm: Reactive Drop", 2304, Protocol::Valve(Engine::new(563_560))), "atlas" => game!("ATLAS", 57561, Protocol::Valve(Engine::new(834_910))), "avorion" => game!("Avorion", 27020, Protocol::Valve(Engine::new(445_220))), - "avp" => game!("Aliens vs. Predator", 27015, Protocol::Valve(Engine::new(10_680))), + "avp2010" => game!("Aliens vs. Predator 2010", 27015, Protocol::Valve(Engine::new(10_680))), "barotrauma" => game!("Barotrauma", 27016, Protocol::Valve(Engine::new(602_960))), "basedefense" => game!("Base Defense", 27015, Protocol::Valve(Engine::new(632_730)), GatheringSettings { players: GatherToggle::Enforce, diff --git a/crates/lib/src/games/valve.rs b/crates/lib/src/games/valve.rs index b78f751..1ecdc92 100644 --- a/crates/lib/src/games/valve.rs +++ b/crates/lib/src/games/valve.rs @@ -37,7 +37,12 @@ game_query_mod!( Engine::new(296_300), 27016 ); -game_query_mod!(avp, "Aliens vs. Predator", Engine::new(10_680), 27015); +game_query_mod!( + avp2010, + "Aliens vs. Predator 2010", + Engine::new(10_680), + 27015 +); game_query_mod!(barotrauma, "Barotrauma", Engine::new(602_960), 27016); game_query_mod!(blackmesa, "Black Mesa", Engine::new(362_890), 27015); game_query_mod!(brainbread2, "BrainBread 2", Engine::new(346_330), 27015);