Status
This thread has been locked.

Gamerframed

Feedback score
0
Posts
52
Reactions
3
Resources
0
Hi,
I am looking for support for help to make my custom pickaze mine a 3x3x3 area. My current code is:
package com.idtech.item;

import com.idtech.BaseMod;

import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.EntityLiving;
import net.minecraft.item.ItemPickaxe;
import net.minecraft.item.ItemStack;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;

public class ItemGelPickaxe extends ItemPickaxe {

public static final String name = "GelPickaxe";




protected ItemGelPickaxe() {
super(ItemMod.toolMaterialGel);
// TODO Auto-generated constructor stub
setUnlocalizedName(BaseMod.MODID + "_" + name);
this.setCreativeTab(CreativeTabs.tabTools);
}





}
If you have any help please reply!

--
Thanks,
Charles (Java Town Owner)
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.
Status
This thread has been locked.
Top