From 7e2251b8e5c25059ba15b23ba55e27e77724374a Mon Sep 17 00:00:00 2001 From: Tobias Gremeyer Date: Sun, 20 Jan 2019 23:50:31 +0100 Subject: [PATCH] Hymn of Syphoning (pump) tank render fix (#1521) * Hymn of Syphoning (pump) tank render fix Every Hymn of Syphoning (RitualPump) filling of the IFluidHandler now also triggers a block update for the block above the MRS, rerendering the tank contents to be up to date with the new fill status immediatly. * Stonestate for replaced blocks --- .../java/WayofTime/bloodmagic/ritual/types/RitualPump.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java index 2fb5001a..c713721a 100644 --- a/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java +++ b/src/main/java/WayofTime/bloodmagic/ritual/types/RitualPump.java @@ -80,7 +80,8 @@ public class RitualPump extends Ritual { masterRitualStone.getOwnerNetwork().syphon(masterRitualStone.ticket(getRefreshCost())); fluidHandler.fill(posInfo.getRight(), true); world.setBlockState(posInfo.getLeft(), Blocks.STONE.getDefaultState()); - world.notifyBlockUpdate(posInfo.getLeft(), tankState, tankState, 3); + world.notifyBlockUpdate(posInfo.getLeft(), Blocks.STONE.getDefaultState(), Blocks.STONE.getDefaultState(), 3); + world.notifyBlockUpdate(tileEntity.getPos(), tankState, tankState, 3); blockPosIterator.remove(); } }