1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 23:44:38 +00:00

mention join_delay in add_accounts docs

This commit is contained in:
mat 2023-12-11 23:31:57 -06:00
commit da96a7663a

View file

@ -229,6 +229,9 @@ where
/// Use [`Self::add_account`] to only add one account. If you want the /// 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 /// clients to have different default states, add them one at a time with
/// [`Self::add_account_with_state`]. /// [`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] #[must_use]
pub fn add_accounts(mut self, accounts: Vec<Account>) -> Self pub fn add_accounts(mut self, accounts: Vec<Account>) -> Self
where where