diff options
| author | mat <github@matdoes.dev> | 2022-10-08 00:03:07 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-10-08 00:03:07 -0500 |
| commit | 82c04004dbf37b813e1f4223d56b399c40d68e80 (patch) | |
| tree | 5449eb73f86521b025994719f8ead6e947e424ec /bot | |
| parent | 7c955c794aa2ea69f016970b221343a4cfc55b87 (diff) | |
| download | azalea-drasl-82c04004dbf37b813e1f4223d56b399c40d68e80.tar.xz | |
change definition of Event::Tick
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/src/main.rs b/bot/src/main.rs index 2f79ad26..0a291fd8 100644 --- a/bot/src/main.rs +++ b/bot/src/main.rs @@ -25,7 +25,7 @@ async fn main() { async fn handle(bot: Client, event: Arc<Event>, _state: Arc<Mutex<State>>) -> anyhow::Result<()> { if let Event::Tick = *event { - // bot.jump(); + bot.jump(); } Ok(()) |
