diff options
Diffstat (limited to 'azalea-client/src/plugins/connection.rs')
| -rw-r--r-- | azalea-client/src/plugins/connection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-client/src/plugins/connection.rs b/azalea-client/src/plugins/connection.rs index 36aa2ee7..a929a4c7 100644 --- a/azalea-client/src/plugins/connection.rs +++ b/azalea-client/src/plugins/connection.rs @@ -169,9 +169,9 @@ pub struct RawConnection { /// /// To check if we haven't disconnected from the server, use /// [`Self::is_alive`]. - network: Option<NetworkConnection>, + pub(crate) network: Option<NetworkConnection>, pub state: ConnectionProtocol, - is_alive: bool, + pub(crate) is_alive: bool, /// This exists for internal testing purposes and probably shouldn't be used /// for normal bots. It's basically a way to make our client think it |
