This commit is contained in:
Bob 2022-10-16 18:37:21 +02:00
parent fff48c5ca1
commit 5f33fa8ee6
2 changed files with 4 additions and 4 deletions

View File

@ -42,8 +42,8 @@ public class TileEntityMachineBoiler extends TileEntity implements ISidedInvento
public TileEntityMachineBoiler() {
slots = new ItemStack[7];
tanks = new FluidTank[2];
tanks[0] = new FluidTank(Fluids.WATER, 8000, 0);
tanks[1] = new FluidTank(Fluids.STEAM, 8000, 1);
tanks[0] = new FluidTank(Fluids.OIL, 8000, 0);
tanks[1] = new FluidTank(Fluids.HOTOIL, 8000, 1);
}
@Override

View File

@ -48,8 +48,8 @@ public class TileEntityMachineBoilerElectric extends TileEntityLoadedBase implem
public TileEntityMachineBoilerElectric() {
slots = new ItemStack[7];
tanks = new FluidTank[2];
tanks[0] = new FluidTank(Fluids.WATER, 16000, 0);
tanks[1] = new FluidTank(Fluids.STEAM, 16000, 1);
tanks[0] = new FluidTank(Fluids.OIL, 16000, 0);
tanks[1] = new FluidTank(Fluids.HOTOIL, 16000, 1);
}
@Override