aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_set_jigsaw_block.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-11-13 12:34:47 +0930
committermat <git@matdoes.dev>2025-11-13 07:04:52 +0400
commitfbaae39cdf9c5a7a34005a51a37b85f7cdd5ea00 (patch)
tree3126fb34a4e0ac979a1103a8227a2b9a136c1553 /azalea-protocol/src/packets/game/s_set_jigsaw_block.rs
parenta4312599f7c04709a92b7be238dcf577bafbb14f (diff)
downloadazalea-drasl-fbaae39cdf9c5a7a34005a51a37b85f7cdd5ea00.tar.xz
rename ResourceLocation to Identifier ahead of mojmap changes
Diffstat (limited to 'azalea-protocol/src/packets/game/s_set_jigsaw_block.rs')
-rw-r--r--azalea-protocol/src/packets/game/s_set_jigsaw_block.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/azalea-protocol/src/packets/game/s_set_jigsaw_block.rs b/azalea-protocol/src/packets/game/s_set_jigsaw_block.rs
index 8999faf4..ac942d88 100644
--- a/azalea-protocol/src/packets/game/s_set_jigsaw_block.rs
+++ b/azalea-protocol/src/packets/game/s_set_jigsaw_block.rs
@@ -4,7 +4,7 @@ use std::{
};
use azalea_buf::{AzBuf, AzaleaRead};
-use azalea_core::{position::BlockPos, resource_location::ResourceLocation};
+use azalea_core::{identifier::Identifier, position::BlockPos};
use azalea_protocol_macros::ServerboundGamePacket;
use crate::packets::{AzaleaWrite, BufReadError};
@@ -12,9 +12,9 @@ use crate::packets::{AzaleaWrite, BufReadError};
#[derive(Clone, Debug, AzBuf, PartialEq, ServerboundGamePacket)]
pub struct ServerboundSetJigsawBlock {
pub pos: BlockPos,
- pub name: ResourceLocation,
- pub target: ResourceLocation,
- pub pool: ResourceLocation,
+ pub name: Identifier,
+ pub target: Identifier,
+ pub pool: Identifier,
pub final_state: String,
pub joint: String,
#[var]