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
This commit is contained in:
Tobias Gremeyer 2019-01-20 23:50:31 +01:00 committed by Nick Ignoffo
parent fa87ed0e17
commit 7e2251b8e5

View file

@ -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();
}
}