that didnt fix the conflict

This commit is contained in:
Voxelstice 2022-05-23 13:14:20 +10:00 committed by GitHub
parent ac93e2c4b0
commit 5b463d96d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,6 +50,7 @@ public class TileEntityCoreReceiver extends TileEntityMachineBase implements IEn
if (!worldObj.isRemote) { if (!worldObj.isRemote) {
tank.updateTank(xCoord, yCoord, zCoord, worldObj.provider.dimensionId); tank.updateTank(xCoord, yCoord, zCoord, worldObj.provider.dimensionId);
this.subscribeToAllAround(tank.getTankType(), this);
power = joules * 5000; power = joules * 5000;
@ -172,6 +173,11 @@ public class TileEntityCoreReceiver extends TileEntityMachineBase implements IEn
tank.writeToNBT(nbt, "tank"); tank.writeToNBT(nbt, "tank");
} }
@Override
public FluidTank[] getReceivingTanks() {
return new FluidTank[] { tank };
}
// do some opencomputer stuff // do some opencomputer stuff
@Override @Override
public String getComponentName() { public String getComponentName() {