feat: add myth of empires support

This commit is contained in:
CosminPerRam 2024-04-07 23:09:16 +03:00
parent cca938674c
commit 9264d5fe4a
4 changed files with 4 additions and 0 deletions

View file

@ -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:
_

View file

@ -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:

View file

@ -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)),
};

View file

@ -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);