From 8dbea0170f8f882ac0a67cacdc07ea14364c3f4a Mon Sep 17 00:00:00 2001 From: tim1504 <109680883+tim1504@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:10:29 +0100 Subject: [PATCH] Fix args to work with contest system --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 4113c1f..73e2398 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,7 +12,7 @@ use logic::OwnLogic; #[derive(Parser, Debug)] struct Args { /// The game server's host address. - #[clap(long, default_value = "localhost")] + #[clap(short, long, default_value = "localhost")] host: String, /// The game server's port. #[clap(short, long, default_value_t = 13050)]