diff options
| author | mat <git@matdoes.dev> | 2023-09-08 20:01:46 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-09-08 20:01:46 -0500 |
| commit | a91b62d4cac9dcd7a20a76b75382143ccf80bd2e (patch) | |
| tree | 2a8146bf677c9f8ee6e1848f48574616f0059269 /azalea-client | |
| parent | 35d6ac565d43234bec36e8f013e982f2ab4fc80f (diff) | |
| download | azalea-drasl-a91b62d4cac9dcd7a20a76b75382143ccf80bd2e.tar.xz | |
make PacketReceiver::packet_writer public
Diffstat (limited to 'azalea-client')
| -rw-r--r-- | azalea-client/src/local_player.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/local_player.rs b/azalea-client/src/local_player.rs index 2e0ccc75..682fc0c9 100644 --- a/azalea-client/src/local_player.rs +++ b/azalea-client/src/local_player.rs @@ -34,7 +34,7 @@ use crate::{ /// [`Client`]: crate::Client #[derive(Component)] pub struct LocalPlayer { - packet_writer: mpsc::UnboundedSender<ServerboundGamePacket>, + pub packet_writer: mpsc::UnboundedSender<ServerboundGamePacket>, /// The partial instance is the world this client currently has loaded. It /// has a limited render distance. |
