From 0b2be854e8e7ebd0a08b3eba80510adef57dea0d Mon Sep 17 00:00:00 2001 From: Lance5057 Date: Tue, 7 Apr 2015 20:42:08 -0500 Subject: Kinda forgot to update github... --- src/main/java/gmail/Lance5057/blocks/JewelersBench.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/main/java/gmail/Lance5057/blocks/JewelersBench.java') 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 -- cgit v1.2.3