diff --git a/protocol/src/protocol/packet.rs b/protocol/src/protocol/packet.rs index 365e38f..09d9e88 100644 --- a/protocol/src/protocol/packet.rs +++ b/protocol/src/protocol/packet.rs @@ -2968,6 +2968,7 @@ pub enum CommandProperty { ItemEnchantment, EntitySummon, Dimension, + UUID, } impl Serializable for CommandNode { @@ -3095,6 +3096,7 @@ impl Serializable for CommandNode { "minecraft:item_enchantment" => CommandProperty::ItemEnchantment, "minecraft:entity_summon" => CommandProperty::EntitySummon, "minecraft:dimension" => CommandProperty::Dimension, + "minecraft:uuid" => CommandProperty::UUID, _ => panic!("unsupported command node parser {}", parse), }) } else {