aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_cookie_response.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/s_cookie_response.rs')
-rw-r--r--azalea-protocol/src/packets/game/s_cookie_response.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-protocol/src/packets/game/s_cookie_response.rs b/azalea-protocol/src/packets/game/s_cookie_response.rs
index fd6b8a51..a6a99cf7 100644
--- a/azalea-protocol/src/packets/game/s_cookie_response.rs
+++ b/azalea-protocol/src/packets/game/s_cookie_response.rs
@@ -1,9 +1,9 @@
use azalea_buf::AzBuf;
-use azalea_core::resource_location::ResourceLocation;
+use azalea_core::identifier::Identifier;
use azalea_protocol_macros::ServerboundGamePacket;
#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundCookieResponse {
- pub key: ResourceLocation,
+ pub key: Identifier,
pub payload: Option<Vec<u8>>,
}