Unify creative tabs

This commit is contained in:
Prospector 2018-06-12 15:42:20 -07:00
parent ac9c01555f
commit 6d3b415ddd
108 changed files with 157 additions and 203 deletions

View file

@ -26,7 +26,7 @@ package techreborn.itemblocks;
import net.minecraft.block.Block;
import net.minecraft.item.ItemBlock;
import techreborn.client.TechRebornCreativeTabMisc;
import techreborn.utils.TechRebornCreativeTab;
/**
* Created by modmuss50 on 20/02/2016.
@ -35,7 +35,7 @@ public class ItemBlockRubberSapling extends ItemBlock {
public ItemBlockRubberSapling(Block block) {
super(block);
setCreativeTab(TechRebornCreativeTabMisc.instance);
setCreativeTab(TechRebornCreativeTab.instance);
setUnlocalizedName("techreborn.rubberSapling");
}
}