From 77e2e55067d106610fce3f1c29568cc4ec850a9e Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:07:49 -0700 Subject: [PATCH] Fix bucket desync bug with barrel --- .../thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java index 4f6812ab..ddcad99a 100644 --- a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java +++ b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java @@ -224,6 +224,7 @@ public class BarrelBlockEntity extends ETankBlockEntity { if (FluidUtil.interactWithFluidHandler(player, hand, this.tank)) { this.isBeingFilledByPlayer = false; tryInWorldFluidMixing(); + markUpdated(); // If the item is a fluid handler, try to transfer fluids if (wasBurning && !isHotFluid(this.tank.getFluid().getFluid().getFluidType())) {