diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-21 21:42:47 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-07-21 21:42:47 +0200 |
commit | 1011015b29c00480b1a7bcb5e2d98abdb363fc75 (patch) | |
tree | f3aababb022dca87a12124ae46c5d1f75eeab14c /planetwars-client/src | |
parent | b84e9be9d64bad2b1a44f34c499de7dd0525f2b6 (diff) | |
download | planetwars.dev-1011015b29c00480b1a7bcb5e2d98abdb363fc75.tar.xz planetwars.dev-1011015b29c00480b1a7bcb5e2d98abdb363fc75.zip |
show match url in planetwars_client
Diffstat (limited to 'planetwars-client/src')
-rw-r--r-- | planetwars-client/src/main.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/planetwars-client/src/main.rs b/planetwars-client/src/main.rs index 25a6725..30397a5 100644 --- a/planetwars-client/src/main.rs +++ b/planetwars-client/src/main.rs @@ -29,6 +29,10 @@ async fn main() { let created_match = create_match(channel.clone()).await.unwrap(); run_player(bot_config, created_match.player_key, channel).await; + println!( + "Match completed. Watch the replay at {}", + created_match.match_url + ); tokio::time::sleep(Duration::from_secs(1)).await; } |