diff options
| author | mat <git@matdoes.dev> | 2025-02-01 20:35:57 +0000 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-02-01 20:35:57 +0000 |
| commit | 87c34e1c3355e2b950f3c6f4ae44dcdfb775bbca (patch) | |
| tree | f725697c27f1959a97d48d5ed6e4a25266dcdd6b /azalea-client/src/client.rs | |
| parent | 4aa5010ea2dec8633be29b0a06c9b2233d7a6522 (diff) | |
| download | azalea-drasl-87c34e1c3355e2b950f3c6f4ae44dcdfb775bbca.tar.xz | |
add failing test_set_health_before_login test
Diffstat (limited to 'azalea-client/src/client.rs')
| -rw-r--r-- | azalea-client/src/client.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index cfef34d1..7c1aca78 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -326,7 +326,7 @@ impl Client { client_information: crate::ClientInformation::default(), instance_holder, }, - InConfigurationState, + InConfigState, )); Ok((client, rx)) @@ -757,8 +757,8 @@ pub struct JoinedClientBundle { /// A marker component for local players that are currently in the /// `configuration` state. -#[derive(Component)] -pub struct InConfigurationState; +#[derive(Component, Clone, Debug)] +pub struct InConfigState; pub struct AzaleaPlugin; impl Plugin for AzaleaPlugin { |
