diff options
| author | mat <github@matdoes.dev> | 2022-05-08 18:55:49 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-08 18:55:49 -0500 |
| commit | ac392542ce223639c8615035a0be050fff12030a (patch) | |
| tree | 460f8019c2a7aeada10a714f624002ef53007be2 /bot/src | |
| parent | e0239865659b2f2750edda7556548f6a2b8d4127 (diff) | |
| parent | d783a0295b11c32f1b5425cab2461f9297f7f8fa (diff) | |
| download | azalea-drasl-ac392542ce223639c8615035a0be050fff12030a.tar.xz | |
Merge branch 'main' into chunk-decoding
Diffstat (limited to 'bot/src')
| -rw-r--r-- | bot/src/main.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/src/main.rs b/bot/src/main.rs index 657d1adb..075bfa44 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -6,7 +6,7 @@ async fn main() { println!("Hello, world!"); // let address = "95.111.249.143:10000"; - let address = "172.23.192.1:62522"; + let address = "172.23.192.1:61385"; // let response = azalea_client::ping::ping_server(&address.try_into().unwrap()) // .await // .unwrap(); @@ -29,6 +29,9 @@ async fn main() { // .unwrap(); // println!("{:?}", c); } + Event::Chat(p) => { + println!("{}", p.message.to_ansi(None)); + } } } |
