This commit is contained in:
Raoul Van den Berge
2016-01-31 15:17:36 +01:00
parent 9d2e6ed16f
commit f55e8ac2e5
7 changed files with 23 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
package storagecraft.block; package storagecraft.block;
import java.util.List;
import net.minecraft.block.properties.IProperty; import net.minecraft.block.properties.IProperty;
import net.minecraft.block.properties.PropertyEnum; import net.minecraft.block.properties.PropertyEnum;
import net.minecraft.block.properties.PropertyInteger; import net.minecraft.block.properties.PropertyInteger;
@@ -18,8 +19,6 @@ import storagecraft.StorageCraft;
import storagecraft.StorageCraftGUI; import storagecraft.StorageCraftGUI;
import storagecraft.tile.TileController; import storagecraft.tile.TileController;
import java.util.List;
public class BlockController extends BlockBase public class BlockController extends BlockBase
{ {
public static final PropertyEnum TYPE = PropertyEnum.create("type", EnumControllerType.class); public static final PropertyEnum TYPE = PropertyEnum.create("type", EnumControllerType.class);

View File

@@ -23,7 +23,6 @@ public class BlockExporter extends BlockMachine
return new TileExporter(); return new TileExporter();
} }
@Override @Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ) public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ)
{ {

View File

@@ -23,7 +23,6 @@ public class BlockImporter extends BlockMachine
return new TileImporter(); return new TileImporter();
} }
@Override @Override
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ) public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumFacing side, float hitX, float hitY, float hitZ)
{ {