aboutsummaryrefslogtreecommitdiff
path: root/server/protocol/src
diff options
context:
space:
mode:
Diffstat (limited to 'server/protocol/src')
-rw-r--r--server/protocol/src/lib.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs
index a55eabe2..68af0e63 100644
--- a/server/protocol/src/lib.rs
+++ b/server/protocol/src/lib.rs
@@ -27,7 +27,7 @@ pub use glam;
pub mod movement;
-pub const VERSION: (u32, u32) = (5, 0);
+pub const VERSION: (u32, u32) = (6, 0);
pub const BINCODE_CONFIG: Configuration<LittleEndian, Varint, Limit<4096>> =
standard().with_limit();
@@ -185,9 +185,13 @@ pub enum PacketC {
location: ItemLocation,
item: Option<ItemIndex>,
},
+ ClearProgress {
+ item: ItemLocation,
+ },
SetProgress {
item: ItemLocation,
- progress: Option<f32>,
+ position: f32,
+ speed: f32,
warn: bool,
},
UpdateMap {