removed debug
This commit is contained in:
parent
f0c156a442
commit
79c49fdb41
1 changed files with 0 additions and 3 deletions
|
@ -389,7 +389,6 @@ public abstract class TileEntityFluidNetworkTile extends TileEntityFluidDevice i
|
||||||
this.tank = new FluidTank(data.readInt());
|
this.tank = new FluidTank(data.readInt());
|
||||||
this.getTank().readFromNBT(PacketHandler.instance().readNBTTagCompound(data));
|
this.getTank().readFromNBT(PacketHandler.instance().readNBTTagCompound(data));
|
||||||
this.internalTanksInfo[0] = this.getTank().getInfo();
|
this.internalTanksInfo[0] = this.getTank().getInfo();
|
||||||
System.out.println("DescriptionPacket");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (id.equalsIgnoreCase("RenderPacket"))
|
else if (id.equalsIgnoreCase("RenderPacket"))
|
||||||
|
@ -401,7 +400,6 @@ public abstract class TileEntityFluidNetworkTile extends TileEntityFluidDevice i
|
||||||
this.renderConnection[3] = data.readBoolean();
|
this.renderConnection[3] = data.readBoolean();
|
||||||
this.renderConnection[4] = data.readBoolean();
|
this.renderConnection[4] = data.readBoolean();
|
||||||
this.renderConnection[5] = data.readBoolean();
|
this.renderConnection[5] = data.readBoolean();
|
||||||
System.out.println("RenderPacket");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (id.equalsIgnoreCase("SingleTank"))
|
else if (id.equalsIgnoreCase("SingleTank"))
|
||||||
|
@ -409,7 +407,6 @@ public abstract class TileEntityFluidNetworkTile extends TileEntityFluidDevice i
|
||||||
this.tank = new FluidTank(data.readInt());
|
this.tank = new FluidTank(data.readInt());
|
||||||
this.getTank().readFromNBT(PacketHandler.instance().readNBTTagCompound(data));
|
this.getTank().readFromNBT(PacketHandler.instance().readNBTTagCompound(data));
|
||||||
this.internalTanksInfo[0] = this.getTank().getInfo();
|
this.internalTanksInfo[0] = this.getTank().getInfo();
|
||||||
System.out.println("TankPacket");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue