aboutsummaryrefslogtreecommitdiff
path: root/main/java/gregtech/common/blocks/GT_Item_Ores.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/java/gregtech/common/blocks/GT_Item_Ores.java')
-rw-r--r--main/java/gregtech/common/blocks/GT_Item_Ores.java54
1 files changed, 0 insertions, 54 deletions
diff --git a/main/java/gregtech/common/blocks/GT_Item_Ores.java b/main/java/gregtech/common/blocks/GT_Item_Ores.java
deleted file mode 100644
index ab49dfdd88..0000000000
--- a/main/java/gregtech/common/blocks/GT_Item_Ores.java
+++ /dev/null
@@ -1,54 +0,0 @@
-package gregtech.common.blocks;
-
-import gregtech.api.GregTech_API;
-import net.minecraft.block.Block;
-import net.minecraft.entity.player.EntityPlayer;
-import net.minecraft.item.ItemBlock;
-import net.minecraft.item.ItemStack;
-import net.minecraft.world.World;
-
-public class GT_Item_Ores
- extends ItemBlock
-{
- public GT_Item_Ores(Block par1)
- {
- super(par1);
- setMaxDamage(0);
- setHasSubtypes(true);
- setCreativeTab(GregTech_API.TAB_GREGTECH_MATERIALS);
- }
-
- public boolean onItemUseFirst(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ)
- {
- return false;
- }
-
- public String getUnlocalizedName(ItemStack aStack)
- {
- return this.field_150939_a.getUnlocalizedName() + "." + getDamage(aStack);
- }
-
- public boolean placeBlockAt(ItemStack aStack, EntityPlayer aPlayer, World aWorld, int aX, int aY, int aZ, int side, float hitX, float hitY, float hitZ, int aMeta)
- {
- short tDamage = (short)getDamage(aStack);
- if (tDamage > 0)
- {
- if (!aWorld.setBlock(aX, aY, aZ, this.field_150939_a, GT_TileEntity_Ores.getHarvestData(tDamage), 3)) {
- return false;
- }
- GT_TileEntity_Ores tTileEntity = (GT_TileEntity_Ores)aWorld.getTileEntity(aX, aY, aZ);
- tTileEntity.mMetaData = tDamage;
- tTileEntity.mNatural = false;
- }
- else if (!aWorld.setBlock(aX, aY, aZ, this.field_150939_a, 0, 3))
- {
- return false;
- }
- if (aWorld.getBlock(aX, aY, aZ) == this.field_150939_a)
- {
- this.field_150939_a.onBlockPlacedBy(aWorld, aX, aY, aZ, aPlayer, aStack);
- this.field_150939_a.onPostBlockPlaced(aWorld, aX, aY, aZ, tDamage);
- }
- return true;
- }
-}