dingleberry blues

This commit is contained in:
George Paton 2025-03-24 20:00:01 +11:00
parent b5d76afb8c
commit 177e5a245e

View File

@ -121,7 +121,7 @@ public class TileEntityMachineFluidTank extends TileEntityMachineBase implements
this.node = (FluidNode) UniNodespace.getNode(worldObj, xCoord, yCoord, zCoord, tank.getTankType().getNetworkProvider());
if(this.node == null || this.node.expired) {
if(this.node == null || this.node.expired || tank.getTankType() != lastType) {
this.node = this.createNode(tank.getTankType());
UniNodespace.createNode(worldObj, this.node);
lastType = tank.getTankType();