diff options
| author | mat <git@matdoes.dev> | 2023-05-12 23:20:23 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-05-12 23:20:23 -0500 |
| commit | e977391b0413aaa62ea725a53e4a78c287844f4c (patch) | |
| tree | 8ca64948b685610b81ae7f3f95153acf8a25c003 /azalea/src/bot.rs | |
| parent | 741a1f65d669c83710e8c33082b120c189b28f1d (diff) | |
| download | azalea-drasl-e977391b0413aaa62ea725a53e4a78c287844f4c.tar.xz | |
auto respawn
Diffstat (limited to 'azalea/src/bot.rs')
| -rw-r--r-- | azalea/src/bot.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea/src/bot.rs b/azalea/src/bot.rs index e5ea4c28..13b33bb0 100644 --- a/azalea/src/bot.rs +++ b/azalea/src/bot.rs @@ -1,4 +1,5 @@ use crate::app::{App, CoreSchedule, IntoSystemAppConfig, Plugin, PluginGroup, PluginGroupBuilder}; +use crate::auto_respawn::AutoRespawnPlugin; use crate::container::ContainerPlugin; use crate::ecs::{ component::Component, @@ -135,5 +136,6 @@ impl PluginGroup for DefaultBotPlugins { .add(BotPlugin) .add(PathfinderPlugin) .add(ContainerPlugin) + .add(AutoRespawnPlugin) } } |
