diff options
Diffstat (limited to 'server/protocol/src/lib.rs')
-rw-r--r-- | server/protocol/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs index 56ddc7a8..b826edae 100644 --- a/server/protocol/src/lib.rs +++ b/server/protocol/src/lib.rs @@ -28,7 +28,7 @@ pub use glam; pub mod movement; pub mod registry; -pub const VERSION: (u32, u32) = (7, 0); +pub const VERSION: (u32, u32) = (7, 1); pub const BINCODE_CONFIG: Configuration<LittleEndian, Varint, Limit<4096>> = standard().with_limit(); @@ -247,6 +247,9 @@ pub enum PacketC { item: ItemIndex, success: bool, }, + Redirect { + uri: Vec<String>, + }, /// For use in replay sessions only ReplayStart, |