Skip to content

Commit

Permalink
Add copper wire to creative tab.
Browse files Browse the repository at this point in the history
  • Loading branch information
micdoodle8 committed Aug 19, 2013
1 parent 1445afa commit dd031bd
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import universalelectricity.prefab.block.BlockConductor;
Expand All @@ -26,6 +27,12 @@ public GCCoreBlockCopperWire(int id)
Block.setBurnProperties(this.blockID, 30, 60);
}

@Override
public CreativeTabs getCreativeTabToDisplayOn()
{
return GalacticraftCore.galacticraftTab;
}

@Override
public void registerIcons(IconRegister par1IconRegister)
{
Expand Down

0 comments on commit dd031bd

Please sign in to comment.