Merge remote-tracking branch 'origin/remove-ioexception' into remove-ioexception

This commit is contained in:
AlexProgrammerDE 2024-02-25 07:51:05 +01:00
commit 8dd14be7ba

View file

@ -459,7 +459,7 @@ public class MinecraftCodecHelper extends BasePacketCodecHelper {
return switch (type) {
case BLOCK, BLOCK_MARKER -> {
int blockState = this.readVarInt(buf);
new BlockParticleData(blockState);
yield new BlockParticleData(blockState);
}
case DUST -> {
float red = buf.readFloat();