aboutsummaryrefslogtreecommitdiff
path: root/bot
diff options
context:
space:
mode:
Diffstat (limited to 'bot')
-rw-r--r--bot/src/main.rs3
1 files changed, 3 insertions, 0 deletions
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();
}