From cf54235bc3e7f255709442d0f60de01ea5cba2d9 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Mon, 10 Jun 2024 10:25:17 -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 157ef687..60210276 100644 --- a/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java +++ b/src/main/java/thedarkcolour/exdeorum/blockentity/BarrelBlockEntity.java @@ -230,6 +230,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())) {