diff options
| author | mat <git@matdoes.dev> | 2025-01-29 05:29:20 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-01-29 05:29:20 +0000 |
| commit | 6d8d937d47646a930076c2512fe06055d0ca057f (patch) | |
| tree | a017c7f796212458268a0645e613b9bb87578493 /azalea-client/src/client.rs | |
| parent | befcec9b3a39fce64b23f31ecb0d56901bc0e1f4 (diff) | |
| download | azalea-drasl-6d8d937d47646a930076c2512fe06055d0ca057f.tar.xz | |
add support for tickend and playerinput
Diffstat (limited to 'azalea-client/src/client.rs')
| -rw-r--r-- | azalea-client/src/client.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index 662a1294..cfef34d1 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -78,6 +78,7 @@ use crate::{ player::retroactively_add_game_profile_component, raw_connection::RawConnection, respawn::RespawnPlugin, + send_client_end::TickEndPlugin, task_pool::TaskPoolPlugin, Account, PlayerInfo, }; @@ -927,6 +928,7 @@ impl PluginGroup for DefaultPlugins { .add(MinePlugin) .add(AttackPlugin) .add(ChunkPlugin) + .add(TickEndPlugin) .add(ConfigurationPlugin) .add(TickBroadcastPlugin); #[cfg(feature = "log")] |
