summaryrefslogtreecommitdiff
path: root/src/main/java/gmail/Lance5057/blocks/JewelersBench.java
diff options
context:
space:
mode:
authorLance5057 <Lance5057@gmail.com>2015-04-07 20:42:08 -0500
committerLance5057 <Lance5057@gmail.com>2015-04-07 20:42:08 -0500
commit0b2be854e8e7ebd0a08b3eba80510adef57dea0d (patch)
tree40e4507fc85b51024e8694b0fb8d9c6d22747034 /src/main/java/gmail/Lance5057/blocks/JewelersBench.java
parent14504bab9a99161b597fdd7da1993f0019384ff8 (diff)
Kinda forgot to update github...
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