aboutsummaryrefslogtreecommitdiff
path: root/planetwars-client/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'planetwars-client/src/main.rs')
-rw-r--r--planetwars-client/src/main.rs4
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;
}