Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package passage.extrafurniture.item;
- import net.minecraft.item.Item;
- import passage.extrafurniture.ExtraFurniture;
- public class ItemSilverSword extends Item{
- public ItemSilverSword()
- {
- setRegistryName("firstitem"); // The unique name (within your mod) that identifies this item
- setUnlocalizedName(ExtraFurniture.MODID + ".firstitem"); // Used for localization (en_US.lang)
- }
- }
Add Comment
Please, Sign In to add comment