[Game] Add Creativerse support.

This commit is contained in:
CosminPerRam 2023-09-03 12:12:14 +03:00
parent 89d69c1176
commit 76a3ac2f78
7 changed files with 84 additions and 56 deletions

View file

@ -16,6 +16,7 @@ use gamedig::{
bo,
ccure,
cosu,
creativerse,
cs,
cscz,
csgo,
@ -193,6 +194,7 @@ fn main() -> GDResult<()> {
"haloce" => println!("{:#?}", haloce::query(ip, port)?),
"jc2mp" => println!("{:#?}", jc2mp::query(ip, port)?),
"warsow" => println!("{:#?}", warsow::query(ip, port)?),
"creativerse" => println!("{:#?}", creativerse::query(ip, port)?),
_ => panic!("Undefined game: {}", args[1]),
};