aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/c_registry_data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/config/c_registry_data.rs')
-rw-r--r--azalea-protocol/src/packets/config/c_registry_data.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea-protocol/src/packets/config/c_registry_data.rs b/azalea-protocol/src/packets/config/c_registry_data.rs
index 18d2e73b..16a86a9f 100644
--- a/azalea-protocol/src/packets/config/c_registry_data.rs
+++ b/azalea-protocol/src/packets/config/c_registry_data.rs
@@ -1,10 +1,10 @@
use azalea_buf::AzBuf;
-use azalea_core::resource_location::ResourceLocation;
+use azalea_core::identifier::Identifier;
use azalea_protocol_macros::ClientboundConfigPacket;
use simdnbt::owned::NbtCompound;
#[derive(Clone, Debug, AzBuf, PartialEq, ClientboundConfigPacket)]
pub struct ClientboundRegistryData {
- pub registry_id: ResourceLocation,
- pub entries: Vec<(ResourceLocation, Option<NbtCompound>)>,
+ pub registry_id: Identifier,
+ pub entries: Vec<(Identifier, Option<NbtCompound>)>,
}