diff --git a/GAMES.md b/GAMES.md index 3110589..ce02fec 100644 --- a/GAMES.md +++ b/GAMES.md @@ -84,6 +84,7 @@ Beware of the `Notes` column, as it contains information about query port offset | Double Action: Boogaloo | DAB | Valve | | | Mordhau | MORDHAU | Valve | | | Enshrouded | ENSHROUDED | Valve | | +| Myth of Empires | MOE | Valve | | ## Planned to add support: _ diff --git a/crates/lib/CHANGELOG.md b/crates/lib/CHANGELOG.md index e2e89b8..1ceb4e0 100644 --- a/crates/lib/CHANGELOG.md +++ b/crates/lib/CHANGELOG.md @@ -5,6 +5,7 @@ Who knows what the future holds... Games: - [Mordhau](https://store.steampowered.com/app/629760/MORDHAU/) support. - [Enshrouded](https://store.steampowered.com/app/1203620/Enshrouded/) support. +- [Myth of Empires](https://store.steampowered.com/app/1371580/Myth_of_Empires/) support. # 0.5.0 - 15/03/2024 ### Changes: diff --git a/crates/lib/src/games/definitions.rs b/crates/lib/src/games/definitions.rs index a72d2ac..4e7d3a0 100644 --- a/crates/lib/src/games/definitions.rs +++ b/crates/lib/src/games/definitions.rs @@ -137,6 +137,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! { "unrealtournament2004" => game!("Unreal Tournament 2004", 7778, Protocol::Unreal2), "eco" => game!("Eco", 3000, Protocol::PROPRIETARY(ProprietaryProtocol::Eco)), "zps" => game!("Zombie Panic: Source", 27015, Protocol::Valve(Engine::new(17_500))), + "moe" => game!("Myth Of Empires", 12888, Protocol::Valve(Engine::new(1_371_580))), "mordhau" => game!("Mordhau", 27015, Protocol::Valve(Engine::new(629_760))), "mindustry" => game!("Mindustry", crate::games::mindustry::DEFAULT_PORT, Protocol::PROPRIETARY(ProprietaryProtocol::Mindustry)), }; diff --git a/crates/lib/src/games/valve.rs b/crates/lib/src/games/valve.rs index 4f7e694..8521edd 100644 --- a/crates/lib/src/games/valve.rs +++ b/crates/lib/src/games/valve.rs @@ -158,4 +158,5 @@ game_query_mod!( ); game_query_mod!(vrising, "V Rising", Engine::new(1_604_030), 27016); game_query_mod!(zps, "Zombie Panic: Source", Engine::new(17_500), 27015); +game_query_mod!(moe, "Myth of Empires", Engine::new(1_371_580), 12888); game_query_mod!(mordhau, "Mordhau", Engine::new(629_760), 27015);