Merge pull request #3641 from Matyrobbrt/develop

Fix stacks having superfluous NBT and fluids in the pattern grid
This commit is contained in:
Raoul
2024-03-05 15:20:50 +01:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Fixed
- Fixed items in disks deserializing with an empty NBT tag.
- Fixed placing fluids in the pattern grid disconnecting the client.
## [1.13.0-beta.2] - 2024-02-16 ## [1.13.0-beta.2] - 2024-02-16
### Fixed ### Fixed

View File

@@ -55,7 +55,7 @@ public class NetworkHandler {
registrar.play( registrar.play(
FluidFilterSlotUpdateMessage.ID, FluidFilterSlotUpdateMessage.ID,
FluidFilterSlotUpdateMessage::decode, FluidFilterSlotUpdateMessage::decode,
handler -> handler.server(FluidFilterSlotUpdateMessage::handle) handler -> handler.client(FluidFilterSlotUpdateMessage::handle)
); );
registrar.play( registrar.play(
BlockEntitySynchronizationParameterMessage.ID, BlockEntitySynchronizationParameterMessage.ID,

View File

@@ -338,7 +338,7 @@ public final class StackUtils {
return AttachmentInternals.reconstructItemStack( return AttachmentInternals.reconstructItemStack(
BuiltInRegistries.ITEM.get(new ResourceLocation(tag.getString(NBT_ITEM_ID))), BuiltInRegistries.ITEM.get(new ResourceLocation(tag.getString(NBT_ITEM_ID))),
tag.getInt(NBT_ITEM_QUANTITY), tag.getInt(NBT_ITEM_QUANTITY),
tag.getCompound(NBT_ITEM_NBT) tag.contains(NBT_ITEM_NBT) ? tag.getCompound(NBT_ITEM_NBT) : null
); );
} }
} }