aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/s_custom_payload.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/config/s_custom_payload.rs')
-rw-r--r--azalea-protocol/src/packets/config/s_custom_payload.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-protocol/src/packets/config/s_custom_payload.rs b/azalea-protocol/src/packets/config/s_custom_payload.rs
index fec04fb5..1bdc85af 100644
--- a/azalea-protocol/src/packets/config/s_custom_payload.rs
+++ b/azalea-protocol/src/packets/config/s_custom_payload.rs
@@ -1,9 +1,9 @@
use azalea_buf::{AzBuf, UnsizedByteArray};
-use azalea_core::resource_location::ResourceLocation;
+use azalea_core::identifier::Identifier;
use azalea_protocol_macros::ServerboundConfigPacket;
#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundConfigPacket)]
pub struct ServerboundCustomPayload {
- pub identifier: ResourceLocation,
+ pub identifier: Identifier,
pub data: UnsizedByteArray,
}