Added BeefCore for multiblock api

This commit is contained in:
Modmuss50 2015-04-17 20:09:43 +01:00
parent bb58ae8632
commit d7ae47e956
18 changed files with 2563 additions and 2 deletions

View file

@ -13,8 +13,6 @@ public class TileBlastFurnace extends TileMachineBase implements IWrenchable {
public BasicSink energy;
public Inventory inventory = new Inventory(3, "TileBlastFurnace", 64);
public TileBlastFurnace() {
}
@Override
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side) {
@ -45,4 +43,8 @@ public class TileBlastFurnace extends TileMachineBase implements IWrenchable {
return new ItemStack(ModBlocks.BlastFurnace, 1);
}
public boolean isComplete(){
return false;
}
}