aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/client.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-05-12 23:20:23 -0500
committermat <git@matdoes.dev>2023-05-12 23:20:23 -0500
commite977391b0413aaa62ea725a53e4a78c287844f4c (patch)
tree8ca64948b685610b81ae7f3f95153acf8a25c003 /azalea-client/src/client.rs
parent741a1f65d669c83710e8c33082b120c189b28f1d (diff)
downloadazalea-drasl-e977391b0413aaa62ea725a53e4a78c287844f4c.tar.xz
auto respawn
Diffstat (limited to 'azalea-client/src/client.rs')
-rw-r--r--azalea-client/src/client.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs
index 7a4285e6..f2e91dfa 100644
--- a/azalea-client/src/client.rs
+++ b/azalea-client/src/client.rs
@@ -11,6 +11,7 @@ use crate::{
movement::{LastSentLookDirection, PlayerMovePlugin},
packet_handling::{self, PacketHandlerPlugin, PacketReceiver},
player::retroactively_add_game_profile_component,
+ respawn::RespawnPlugin,
task_pool::TaskPoolPlugin,
Account, PlayerInfo,
};
@@ -717,6 +718,7 @@ impl PluginGroup for DefaultPlugins {
.add(DisconnectPlugin)
.add(PlayerMovePlugin)
.add(InteractPlugin)
+ .add(RespawnPlugin)
.add(TickBroadcastPlugin)
}
}