just throw a continental breakfast at my face

This commit is contained in:
Bob 2022-12-04 21:12:32 +01:00
parent 94a0f4fb25
commit 7c4031320f

View File

@ -8,6 +8,7 @@ import com.hbm.inventory.fluid.Fluids;
import com.hbm.inventory.fluid.tank.FluidTank;
import com.hbm.inventory.fluid.trait.FT_Flammable;
import com.hbm.inventory.gui.GUIOilburner;
import com.hbm.lib.Library;
import com.hbm.tileentity.IGUIProvider;
import com.hbm.tileentity.TileEntityMachineBase;
@ -48,6 +49,11 @@ public class TileEntityHeaterOilburner extends TileEntityMachineBase implements
tank.loadTank(0, 1, slots);
tank.setType(2, slots);
this.trySubscribe(tank.getTankType(), worldObj, xCoord + 2, yCoord, zCoord, Library.POS_X);
this.trySubscribe(tank.getTankType(), worldObj, xCoord - 2, yCoord, zCoord, Library.NEG_X);
this.trySubscribe(tank.getTankType(), worldObj, xCoord, yCoord, zCoord + 2, Library.POS_Z);
this.trySubscribe(tank.getTankType(), worldObj, xCoord, yCoord, zCoord - 2, Library.NEG_Z);
boolean shouldCool = true;