mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
feat: add Post Scriptum support (#163)
* feat: add post scriptum support * Add/Update badge --------- Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
parent
7510fe3de0
commit
decff82318
5 changed files with 14 additions and 10 deletions
|
|
@ -81,6 +81,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
|
|||
"l4d2" => game!("Left 4 Dead 2", 27015, Protocol::Valve(Engine::new(550))),
|
||||
"ohd" => game!("Operation: Harsh Doorstop", 27005, Protocol::Valve(Engine::new_with_dedicated(736_590, 950_900))),
|
||||
"onset" => game!("Onset", 7776, Protocol::Valve(Engine::new(1_105_810))),
|
||||
"postscriptum" => game!("Post Scriptum", 10037, Protocol::Valve(Engine::new(736220))),
|
||||
"projectzomboid" => game!("Project Zomboid", 16261, Protocol::Valve(Engine::new(108_600))),
|
||||
"quake1" => game!("Quake 1", 27500, Protocol::Quake(QuakeVersion::One)),
|
||||
"quake2" => game!("Quake 2", 27910, Protocol::Quake(QuakeVersion::Two)),
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ game_query_mod!(
|
|||
27005
|
||||
);
|
||||
game_query_mod!(onset, "Onset", Engine::new(1_105_810), 7776);
|
||||
game_query_mod!(postscriptum, "Post Scriptum", Engine::new(736220), 10037);
|
||||
game_query_mod!(
|
||||
projectzomboid,
|
||||
"Project Zomboid",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue