From 643fcb98c0e6cdc63218dd39960d9053b209d9a6 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 30 Sep 2025 10:56:34 -0500 Subject: 1.21.9 (#235) * start updating to 25w33a * 1.21.9-pre2 * clippy * cleanup, and fix c_explode and c_player_rotation * mc update should be in Changed section in the changelog * 1.21.9 --- azalea-buf/src/write.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'azalea-buf/src/write.rs') diff --git a/azalea-buf/src/write.rs b/azalea-buf/src/write.rs index 7b9ad496..8c2d88ea 100644 --- a/azalea-buf/src/write.rs +++ b/azalea-buf/src/write.rs @@ -29,6 +29,12 @@ pub trait AzaleaWriteVar { fn azalea_write_var(&self, buf: &mut impl Write) -> io::Result<()>; } +impl AzaleaWrite for () { + fn azalea_write(&self, _buf: &mut impl Write) -> io::Result<()> { + Ok(()) + } +} + impl AzaleaWrite for i32 { fn azalea_write(&self, buf: &mut impl Write) -> io::Result<()> { WriteBytesExt::write_i32::(buf, *self) -- cgit v1.2.3