do you even lift toast

This commit is contained in:
Ellpeck 2016-08-14 11:44:45 +02:00
parent c9c4c66d8f
commit 7c22d772a7
2 changed files with 1 additions and 5 deletions

View file

@ -49,7 +49,6 @@ public class BlockCoalGenerator extends BlockContainerBase{
this.setTickRandomly(true);
}
@Override
public boolean isFullCube(IBlockState state){
return false;
@ -60,7 +59,6 @@ public class BlockCoalGenerator extends BlockContainerBase{
return false;
}
@Override
public TileEntity createNewTileEntity(World world, int par2){
return new TileEntityCoalGenerator();

View file

@ -38,7 +38,7 @@ import java.util.Random;
public class BlockOilGenerator extends BlockContainerBase{
private static final PropertyInteger META = PropertyInteger.create("meta", 0, 7);
private static final PropertyInteger META = PropertyInteger.create("meta", 0, 3);
public BlockOilGenerator(String name){
super(Material.ROCK, name);
@ -49,7 +49,6 @@ public class BlockOilGenerator extends BlockContainerBase{
this.setTickRandomly(true);
}
@Override
public boolean isFullCube(IBlockState state){
return false;
@ -60,7 +59,6 @@ public class BlockOilGenerator extends BlockContainerBase{
return false;
}
@Override
public TileEntity createNewTileEntity(World world, int par2){
return new TileEntityOilGenerator();