diff options
| author | mat <github@matdoes.dev> | 2021-12-15 14:06:14 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2021-12-15 14:06:14 -0600 |
| commit | 1c9e089b7268fe4ffeeee5e594bb2d708470d2a1 (patch) | |
| tree | 7743fa0a6347d3adf727d7b942e6f91c1956e242 /bot/src/main.rs | |
| parent | 732de94d7b9f1bf2bc9239c8138a37c53242b470 (diff) | |
| download | azalea-drasl-1c9e089b7268fe4ffeeee5e594bb2d708470d2a1.tar.xz | |
clippy
Diffstat (limited to 'bot/src/main.rs')
| -rw-r--r-- | bot/src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/src/main.rs b/bot/src/main.rs index 2d62208d..ca5c698a 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -1,9 +1,9 @@ -use minecraft_client::{connect::join_server, ping::ping_server}; +use minecraft_client::connect::join_server; use tokio::runtime::Runtime; async fn bot() { - let address = "localhost:63425"; - let response = join_server(&address.try_into().unwrap()).await.unwrap(); + let address = "localhost:62072"; + let _response = join_server(&address.try_into().unwrap()).await.unwrap(); // println!("{}", response.description.to_ansi(None)); println!("connected"); } |
