diff options
| author | mat <git@matdoes.dev> | 2025-12-28 14:31:41 +0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-12-28 14:31:41 +0500 |
| commit | 7ab3b8924f64f7eadb6b8928b6fae73cb06e4c2f (patch) | |
| tree | 5add5d27fd7c2638ebe6fab9bd7adcdae28a358d /azalea-client/src/account.rs | |
| parent | 9513f42e87f64c409cdb2a100500a50e5a713bac (diff) | |
| download | azalea-drasl-7ab3b8924f64f7eadb6b8928b6fae73cb06e4c2f.tar.xz | |
move Event and auto_reconnect to the azalea crate
Diffstat (limited to 'azalea-client/src/account.rs')
| -rw-r--r-- | azalea-client/src/account.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/account.rs b/azalea-client/src/account.rs index f988ade9..4db19d0e 100644 --- a/azalea-client/src/account.rs +++ b/azalea-client/src/account.rs @@ -14,7 +14,7 @@ use uuid::Uuid; /// Something that can join Minecraft servers. /// -/// To join a server using this account, use [`Client::join`] or +/// To join a server using this account, use [`StartJoinServerEvent`] or /// [`azalea::ClientBuilder`]. /// /// This is also an ECS component that is present on our client entities. @@ -31,7 +31,7 @@ use uuid::Uuid; /// # } /// ``` /// -/// [`Client::join`]: crate::Client::join +/// [`StartJoinServerEvent`]: crate::join::StartJoinServerEvent /// [`azalea::ClientBuilder`]: https://docs.rs/azalea/latest/azalea/struct.ClientBuilder.html #[derive(Clone, Component, Debug)] pub struct Account { |
