diff --git a/protocol/src/protocol/packet.rs b/protocol/src/protocol/packet.rs index ae260dd..a7527ca 100644 --- a/protocol/src/protocol/packet.rs +++ b/protocol/src/protocol/packet.rs @@ -3092,6 +3092,7 @@ pub enum CommandProperty { Entity { flags: u8, }, + Angle, GameProfile, BlockPos, ColumnPos, @@ -3220,6 +3221,7 @@ impl Serializable for CommandNode { "minecraft:entity" => CommandProperty::Entity { flags: Serializable::read_from(buf)?, }, + "minecraft:angle" => CommandProperty::Angle, "minecraft:game_profile" => CommandProperty::GameProfile, "minecraft:block_pos" => CommandProperty::BlockPos, "minecraft:column_pos" => CommandProperty::ColumnPos,