aboutsummaryrefslogtreecommitdiff
path: root/azalea/src/swarm
diff options
context:
space:
mode:
Diffstat (limited to 'azalea/src/swarm')
-rw-r--r--azalea/src/swarm/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/azalea/src/swarm/mod.rs b/azalea/src/swarm/mod.rs
index 9edaa305..c0d9cb56 100644
--- a/azalea/src/swarm/mod.rs
+++ b/azalea/src/swarm/mod.rs
@@ -199,6 +199,12 @@ where
self.swarm_handler = Some(handler);
self
}
+ /// Set the swarm state instead of initializing defaults.
+ #[must_use]
+ pub fn set_swarm_state(mut self, swarm_state: SS) -> Self {
+ self.swarm_state = swarm_state;
+ self
+ }
/// Add a plugin to the swarm.
#[must_use]