From ef357fdf3667f3ded03203fc0f7cdec48a01ad8f Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 25 Mar 2025 11:17:39 -0500 Subject: 1.21.5 (#198) * 25w02a * move item_components codegen to a different module * remove outdated test * 25w03a * start updating to 24w09b * 1.21.5-pre2 * fix broken packets * 1.21.5-rc2 * merge main * delete unused acket_handling * 1.21.5 --- azalea-protocol/src/packets/game/s_set_test_block.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 azalea-protocol/src/packets/game/s_set_test_block.rs (limited to 'azalea-protocol/src/packets/game/s_set_test_block.rs') diff --git a/azalea-protocol/src/packets/game/s_set_test_block.rs b/azalea-protocol/src/packets/game/s_set_test_block.rs new file mode 100644 index 00000000..579b689e --- /dev/null +++ b/azalea-protocol/src/packets/game/s_set_test_block.rs @@ -0,0 +1,19 @@ +use azalea_buf::AzBuf; +use azalea_core::position::BlockPos; +use azalea_protocol_macros::ServerboundGamePacket; + +#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)] +pub struct ServerboundSetTestBlock { + pub position: BlockPos, + pub mode: TestBlockMode, + pub message: String, +} + +#[derive(Clone, Copy, Debug, AzBuf, Default)] +pub enum TestBlockMode { + #[default] + Start, + Log, + Fail, + Accept, +} -- cgit v1.2.3