Skip to content

Commit

Permalink
Merge pull request #3642 from refinedmods/release/1.13.0-beta.3
Browse files Browse the repository at this point in the history
Release v1.13.0-beta.3
  • Loading branch information
raoulvdberge authored Mar 5, 2024
2 parents 2828303 + 519e289 commit 5170ec4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.13.0-beta.3] - 2024-03-05

### 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

### Fixed
Expand Down Expand Up @@ -3532,7 +3539,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

- Internal test release.

[Unreleased]: https://github.com/refinedmods/refinedstorage/compare/v1.13.0-beta.2...HEAD
[Unreleased]: https://github.com/refinedmods/refinedstorage/compare/v1.13.0-beta.3...HEAD

[1.13.0-beta.3]: https://github.com/refinedmods/refinedstorage/compare/v1.13.0-beta.2...v1.13.0-beta.3

[1.13.0-beta.2]: https://github.com/refinedmods/refinedstorage/compare/v1.13.0-beta.1...v1.13.0-beta.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void register(IPayloadRegistrar registrar) {
registrar.play(
FluidFilterSlotUpdateMessage.ID,
FluidFilterSlotUpdateMessage::decode,
handler -> handler.server(FluidFilterSlotUpdateMessage::handle)
handler -> handler.client(FluidFilterSlotUpdateMessage::handle)
);
registrar.play(
BlockEntitySynchronizationParameterMessage.ID,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public static ItemStack deserializeStackFromNbt(CompoundTag tag) {
return AttachmentInternals.reconstructItemStack(
BuiltInRegistries.ITEM.get(new ResourceLocation(tag.getString(NBT_ITEM_ID))),
tag.getInt(NBT_ITEM_QUANTITY),
tag.getCompound(NBT_ITEM_NBT)
tag.contains(NBT_ITEM_NBT) ? tag.getCompound(NBT_ITEM_NBT) : null
);
}
}

0 comments on commit 5170ec4

Please sign in to comment.