From da96a7663ab50eef04874755b716194e6622c3cf Mon Sep 17 00:00:00 2001 From: mat Date: Mon, 11 Dec 2023 23:31:57 -0600 Subject: [PATCH] mention join_delay in add_accounts docs --- azalea/src/swarm/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azalea/src/swarm/mod.rs b/azalea/src/swarm/mod.rs index 1c89cdbe..ca947579 100644 --- a/azalea/src/swarm/mod.rs +++ b/azalea/src/swarm/mod.rs @@ -229,6 +229,9 @@ where /// Use [`Self::add_account`] to only add one account. If you want the /// clients to have different default states, add them one at a time with /// [`Self::add_account_with_state`]. + /// + /// By default every account will join at the same time, you can add a delay + /// with [`Self::join_delay`]. #[must_use] pub fn add_accounts(mut self, accounts: Vec) -> Self where