Skip to content

Commit

Permalink
Fix, #185
Browse files Browse the repository at this point in the history
  • Loading branch information
NightKosh committed Nov 26, 2018
1 parent e50c615 commit 061ef65
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public ItemBoneAxe() {
this(Item.ToolMaterial.STONE);
this.setUnlocalizedName("gravestone.bone_axe");
this.setRegistryName(ModInfo.ID, "gs_bone_axe");
this.setCreativeTab(null);
}

public ItemBoneAxe(Item.ToolMaterial material) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public ItemGoldenBoneAxe() {
super(ToolMaterial.GOLD);
this.setUnlocalizedName("gravestone.bone_axe_golden");
this.setRegistryName(ModInfo.ID, "gs_bone_axe_golden");
this.setCreativeTab(null);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public ItemIronBoneAxe() {
super(ToolMaterial.IRON);
this.setUnlocalizedName("gravestone.bone_axe_iron");
this.setRegistryName(ModInfo.ID, "gs_bone_axe_iron");
this.setCreativeTab(null);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public ItemBoneHoe() {
this(ToolMaterial.STONE);
this.setUnlocalizedName("gravestone.bone_hoe");
this.setRegistryName(ModInfo.ID, "gs_bone_hoe");
this.setCreativeTab(null);
}

public ItemBoneHoe(ToolMaterial material) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public ItemGoldenBoneHoe() {
super(ToolMaterial.GOLD);
this.setUnlocalizedName("gravestone.bone_hoe_golden");
this.setRegistryName(ModInfo.ID, "gs_bone_hoe_golden");
this.setCreativeTab(null);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public ItemIronBoneHoe() {
super(ToolMaterial.IRON);
this.setUnlocalizedName("gravestone.bone_hoe_iron");
this.setRegistryName(ModInfo.ID, "gs_bone_hoe_iron");
this.setCreativeTab(null);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public ItemBonePickaxe(Item.ToolMaterial material, String str) {
super(material);
this.setUnlocalizedName("gravestone." + str);
this.setRegistryName(ModInfo.ID, "gs_" + str);
this.setCreativeTab(null);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public ItemBoneShovel(ToolMaterial material, String str) {
super(material);
this.setUnlocalizedName("gravestone." + str);
this.setRegistryName(ModInfo.ID, str);
this.setCreativeTab(null);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public ItemBoneSword() {
this(ToolMaterial.STONE);
this.setUnlocalizedName("gravestone.bone_sword");
this.setRegistryName(ModInfo.ID, "gs_bone_sword");
this.setCreativeTab(null);
}

public ItemBoneSword(ToolMaterial material) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public ItemGoldenBoneSword() {
super(ToolMaterial.GOLD);
this.setUnlocalizedName("gravestone.bone_sword_golden");
this.setRegistryName(ModInfo.ID, "gs_bone_sword_golden");
this.setCreativeTab(null);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@ public ItemIronBoneSword() {
super(ToolMaterial.IRON);
this.setUnlocalizedName("gravestone.bone_sword_iron");
this.setRegistryName(ModInfo.ID, "gs_bone_sword_iron");
this.setCreativeTab(null);
}
}

0 comments on commit 061ef65

Please sign in to comment.