diff options
| author | mat <git@matdoes.dev> | 2023-12-02 15:49:54 -0600 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-12-02 15:49:54 -0600 |
| commit | 34a40270108e51014e0884c3b6b6619ba42c17dc (patch) | |
| tree | 4c5db9c4520402f8b17b7ab331c5e999299ade90 /azalea-protocol/src/packets/mod.rs | |
| parent | 1903dabe2cece2eab4a595b09636342aed260406 (diff) | |
| download | azalea-drasl-34a40270108e51014e0884c3b6b6619ba42c17dc.tar.xz | |
change protocol_version to an i32
Diffstat (limited to 'azalea-protocol/src/packets/mod.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/mod.rs b/azalea-protocol/src/packets/mod.rs index eb902da2..df3a2bf0 100755 --- a/azalea-protocol/src/packets/mod.rs +++ b/azalea-protocol/src/packets/mod.rs @@ -12,7 +12,7 @@ use std::io::{Cursor, Write}; // TODO: rename the packet files to just like clientbound_add_entity instead of // clientbound_add_entity_packet -pub const PROTOCOL_VERSION: u32 = 764; +pub const PROTOCOL_VERSION: i32 = 764; #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)] pub enum ConnectionProtocol { |
