diff options
| author | mat <git@matdoes.dev> | 2023-09-14 16:48:21 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-09-14 16:48:21 -0500 |
| commit | 83784d5a350168edaade4620122c2c6d46bc81a2 (patch) | |
| tree | e126bb4849414fff78d24c65f93376f07f44e634 /azalea-client/src/local_player.rs | |
| parent | dea4a656a574318fc011e0545046b0d78b0e816e (diff) | |
| download | azalea-drasl-83784d5a350168edaade4620122c2c6d46bc81a2.tar.xz | |
rename Local to LocalEntity
Diffstat (limited to 'azalea-client/src/local_player.rs')
| -rw-r--r-- | azalea-client/src/local_player.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/azalea-client/src/local_player.rs b/azalea-client/src/local_player.rs index 0c89b4a7..1bcb0948 100644 --- a/azalea-client/src/local_player.rs +++ b/azalea-client/src/local_player.rs @@ -23,10 +23,11 @@ use crate::{ /// world. If you have access to a [`Client`], you probably don't need to care /// about this since `Client` gives you access to everything here. /// -/// You can also use the [`Local`] marker component for queries if you're only -/// checking for a local player and don't need the contents of this component. +/// You can also use the [`LocalEntity`] marker component for queries if you're +/// only checking for a local player and don't need the contents of this +/// component. /// -/// [`Local`]: azalea_entity::Local +/// [`LocalEntity`]: azalea_entity::LocalEntity /// [`Client`]: crate::Client #[derive(Component)] pub struct LocalPlayer { |
