summaryrefslogtreecommitdiff
path: root/src/main/java/gmail/Lance5057/blocks/JewelersBench.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gmail/Lance5057/blocks/JewelersBench.java')
-rw-r--r--src/main/java/gmail/Lance5057/blocks/JewelersBench.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/main/java/gmail/Lance5057/blocks/JewelersBench.java b/src/main/java/gmail/Lance5057/blocks/JewelersBench.java
index af9ca1c..8f7580c 100644
--- a/src/main/java/gmail/Lance5057/blocks/JewelersBench.java
+++ b/src/main/java/gmail/Lance5057/blocks/JewelersBench.java
@@ -1,5 +1,7 @@
package gmail.Lance5057.blocks;
+import cpw.mods.fml.relauncher.Side;
+import cpw.mods.fml.relauncher.SideOnly;
import gmail.Lance5057.tileentities.TileEntity_JewelersBench;
import net.minecraft.block.Block;
import net.minecraft.block.ITileEntityProvider;
@@ -33,9 +35,10 @@ public class JewelersBench extends Block implements ITileEntityProvider
}
//This is the icon to use for showing the block in your hand.
- public void registerIcons(IIconRegister icon) {
- //TODO fix the icon
- this.blockIcon = icon.registerIcon("tinkersdefense:textures/items/QueensGoldIngot.png");
+ @SideOnly(Side.CLIENT)
+ @Override
+ public void registerBlockIcons(IIconRegister icon) {
+ this.blockIcon = icon.registerIcon("tinkersdefense:WIP");
}
@Override