Skip to content

Commit

Permalink
remove from creative tab, #185
Browse files Browse the repository at this point in the history
  • Loading branch information
NightKosh committed Nov 20, 2018
1 parent 9264958 commit 14cd26e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import net.minecraft.item.ItemAxe;
import net.minecraft.item.ItemStack;
import nightkosh.gravestone_extended.core.GSBlock;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -23,7 +22,7 @@ public ItemBoneAxe() {

public ItemBoneAxe(Item.ToolMaterial material) {
super(material);
this.setCreativeTab(GSTabs.otherItemsTab);
// this.setCreativeTab(GSTabs.otherItemsTab);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import net.minecraft.world.World;
import nightkosh.gravestone_extended.core.GSBlock;
import nightkosh.gravestone_extended.core.GSEnchantment;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -37,7 +36,6 @@ public ItemBoneHoe() {

public ItemBoneHoe(ToolMaterial material) {
super(material);
this.setCreativeTab(GSTabs.otherItemsTab);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package nightkosh.gravestone_extended.item.tools.hoe;

import nightkosh.gravestone_extended.core.GSMaterials;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -15,5 +16,6 @@ public ItemDiamondBoneHoe() {
super(GSMaterials.BONE_TOOL);
this.setUnlocalizedName("gravestone.bone_hoe_diamond");
this.setRegistryName(ModInfo.ID, "gs_bone_hoe_diamond");
this.setCreativeTab(GSTabs.otherItemsTab);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import net.minecraft.item.ItemPickaxe;
import net.minecraft.item.ItemStack;
import nightkosh.gravestone_extended.core.GSBlock;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -21,7 +20,6 @@ public ItemBonePickaxe() {

public ItemBonePickaxe(Item.ToolMaterial material, String str) {
super(material);
this.setCreativeTab(GSTabs.otherItemsTab);
this.setUnlocalizedName("gravestone." + str);
this.setRegistryName(ModInfo.ID, "gs_" + str);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package nightkosh.gravestone_extended.item.tools.pickaxe;

import nightkosh.gravestone_extended.core.GSMaterials;
import nightkosh.gravestone_extended.core.GSTabs;

/**
* GraveStone mod
Expand All @@ -12,5 +13,6 @@ public class ItemDiamondBonePickaxe extends ItemBonePickaxe {

public ItemDiamondBonePickaxe() {
super(GSMaterials.BONE_TOOL, "bone_pickaxe_diamond");
this.setCreativeTab(GSTabs.otherItemsTab);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import net.minecraft.item.ItemSpade;
import net.minecraft.item.ItemStack;
import nightkosh.gravestone_extended.core.GSBlock;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -21,7 +20,6 @@ public ItemBoneShovel() {

public ItemBoneShovel(ToolMaterial material, String str) {
super(material);
this.setCreativeTab(GSTabs.otherItemsTab);
this.setUnlocalizedName("gravestone." + str);
this.setRegistryName(ModInfo.ID, str);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package nightkosh.gravestone_extended.item.tools.shovel;

import nightkosh.gravestone_extended.core.GSMaterials;
import nightkosh.gravestone_extended.core.GSTabs;

/**
* GraveStone mod
Expand All @@ -12,5 +13,6 @@ public class ItemDiamondBoneShovel extends ItemBoneShovel {

public ItemDiamondBoneShovel() {
super(GSMaterials.BONE_TOOL, "bone_shovel_diamond");
this.setCreativeTab(GSTabs.otherItemsTab);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemSword;
import nightkosh.gravestone_extended.core.GSBlock;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -23,7 +22,6 @@ public ItemBoneSword() {

public ItemBoneSword(ToolMaterial material) {
super(material);
this.setCreativeTab(GSTabs.otherItemsTab);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package nightkosh.gravestone_extended.item.weapon;

import nightkosh.gravestone_extended.core.GSMaterials;
import nightkosh.gravestone_extended.core.GSTabs;
import nightkosh.gravestone_extended.core.ModInfo;

/**
Expand All @@ -15,5 +16,6 @@ public ItemDiamondBoneSword() {
super(GSMaterials.BONE_TOOL);
this.setUnlocalizedName("gravestone.bone_sword_diamond");
this.setRegistryName(ModInfo.ID, "gs_bone_sword_diamond");
this.setCreativeTab(GSTabs.otherItemsTab);
}
}

0 comments on commit 14cd26e

Please sign in to comment.