mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-18 09:35:50 +00:00
feat: add enshrouded support (#199)
This commit is contained in:
parent
14bf759fa7
commit
a207c39915
4 changed files with 5 additions and 1 deletions
3
GAMES.md
3
GAMES.md
|
|
@ -82,7 +82,8 @@ Beware of the `Notes` column, as it contains information about query port offset
|
|||
| Call Of Duty: Black Ops 3 | CODBO3 | Valve | Query port: 27017. |
|
||||
| Counter-Strike 2 | COUNTERSTRIKE2 | Valve | |
|
||||
| Double Action: Boogaloo | DAB | Valve | |
|
||||
| Mordhau | MORDHAU | Valve |
|
||||
| Mordhau | MORDHAU | Valve | |
|
||||
| Enshrouded | ENSHROUDED | Valve | |
|
||||
|
||||
## Planned to add support:
|
||||
_
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ Who knows what the future holds...
|
|||
# 0.X.Y - DD/MM/YYYY
|
||||
Games:
|
||||
- [Mordhau](https://store.steampowered.com/app/629760/MORDHAU/) support.
|
||||
- [Enshrouded](https://store.steampowered.com/app/1203620/Enshrouded/) support.
|
||||
|
||||
# 0.5.0 - 15/03/2024
|
||||
### Changes:
|
||||
|
|
|
|||
|
|
@ -82,6 +82,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
|||
"dods" => game!("Day of Defeat: Source", 27015, Protocol::Valve(Engine::new(300))),
|
||||
"doi" => game!("Day of Infamy", 27015, Protocol::Valve(Engine::new(447_820))),
|
||||
"dst" => game!("Don't Starve Together", 27016, Protocol::Valve(Engine::new(322_320))),
|
||||
"enshrouded" => game!("Enshrouded", 15637, Protocol::Valve(Engine::new(1_203_620))),
|
||||
"ffow" => game!("Frontlines: Fuel of War", 5478, Protocol::PROPRIETARY(ProprietaryProtocol::FFOW)),
|
||||
"garrysmod" => game!("Garry's Mod", 27016, Protocol::Valve(Engine::new(4000))),
|
||||
"hl2d" => game!("Half-Life 2 Deathmatch", 27015, Protocol::Valve(Engine::new(320))),
|
||||
|
|
|
|||
|
|
@ -90,6 +90,7 @@ game_query_mod!(dod, "Day of Defeat", Engine::new_gold_src(false), 27015);
|
|||
game_query_mod!(dods, "Day of Defeat: Source", Engine::new(300), 27015);
|
||||
game_query_mod!(doi, "Day of Infamy", Engine::new(447_820), 27015);
|
||||
game_query_mod!(dst, "Don't Starve Together", Engine::new(322_320), 27016);
|
||||
game_query_mod!(enshrouded, "Enshrouded", Engine::new(1_203_620), 15637);
|
||||
game_query_mod!(garrysmod, "Garry's Mod", Engine::new(4000), 27016);
|
||||
game_query_mod!(hl2d, "Half-Life 2 Deathmatch", Engine::new(320), 27015);
|
||||
game_query_mod!(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue