Guest User

Untitled

a guest
Mar 3rd, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. //CustomSword.java
  2.  
  3. package com.example.examplemod;
  4.  
  5. import net.minecraft.creativetab.CreativeTabs;
  6. import net.minecraft.item.ItemSword;
  7.  
  8. public class CustomSword extends ItemSword {
  9.  
  10.     public CustomSword() {
  11.         super(ExampleMod.myToolMaterial);
  12.         // TODO Auto-generated constructor stub
  13.         this.setRegistryName("my_sword");
  14.         this.setUnlocalizedName("my_sword");
  15.         this.setCreativeTab(CreativeTabs.COMBAT);
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment