From 65da123631b0a2dc078786f60fa6b213e8b430ee Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Sun, 23 Oct 2022 19:00:24 -0500 Subject: Add Client::set_client_information (#33) * start adding options * add default options * send options packet by default * mention set_options in Client::join doc * make TranslatableComponent::read return TextComponent * change set_options to set_client_information * clean up some code * Add `Initialize` event * fix some clippy warnings * change `Client::options` to `client_information` --- bot/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bot/src') diff --git a/bot/src/main.rs b/bot/src/main.rs index 9f8bd0c8..e4543b6a 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -28,6 +28,9 @@ async fn handle(bot: Client, event: Event, _state: State) -> anyhow::Result<()> Event::Login => { bot.chat("Hello world").await?; } + Event::Initialize => { + println!("initialized"); + } Event::Tick => { bot.jump(); } -- cgit v1.2.3