From e2cec50a49c4af002d893927f0dad7b0c30af902 Mon Sep 17 00:00:00 2001 From: MarbleGate Date: Thu, 9 Oct 2025 08:10:43 +0800 Subject: [PATCH] Update SpoutBlock.java --- .../com/simibubi/create/content/fluids/spout/SpoutBlock.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/simibubi/create/content/fluids/spout/SpoutBlock.java b/src/main/java/com/simibubi/create/content/fluids/spout/SpoutBlock.java index b861fbdb1d..61a306e960 100644 --- a/src/main/java/com/simibubi/create/content/fluids/spout/SpoutBlock.java +++ b/src/main/java/com/simibubi/create/content/fluids/spout/SpoutBlock.java @@ -62,4 +62,8 @@ public BlockEntityType getBlockEntityType() { return AllBlockEntityTypes.SPOUT.get(); } + @Override + public void onRemove(BlockState state, Level level, BlockPos pos, BlockState newState, boolean isMoving) { + IBE.onRemove(state, level, pos, newState); + } }