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) {
tank.updateTank(xCoord, yCoord, zCoord, worldObj.provider.dimensionId);
this.subscribeToAllAround(tank.getTankType(), this);
power = joules * 5000;
@ -171,7 +172,12 @@ public class TileEntityCoreReceiver extends TileEntityMachineBase implements IEn
nbt.setLong("joules", joules);
tank.writeToNBT(nbt, "tank");
}
@Override
public FluidTank[] getReceivingTanks() {
return new FluidTank[] { tank };
}
// do some opencomputer stuff
@Override
public String getComponentName() {