More minor fixes, 370

This commit is contained in:
modmuss50 2019-02-22 14:11:55 +00:00
parent d68c65641d
commit a5b2adac78
8 changed files with 23 additions and 24 deletions

View file

@ -25,6 +25,7 @@
package techreborn.itemblocks;
import net.minecraft.block.Block;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import techreborn.TechReborn;
@ -34,8 +35,6 @@ import techreborn.TechReborn;
public class ItemBlockRubberSapling extends ItemBlock {
public ItemBlockRubberSapling(Block block) {
super(block);
setCreativeTab(TechReborn.TAB);
setTranslationKey("techreborn.rubberSapling");
super(block, new Item.Properties().group(TechReborn.ITEMGROUP));
}
}