WitherDoggie

Seed Code

May 14th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package com.wither.withermod.items.crops;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.creativetab.CreativeTabs;
  5. import net.minecraft.item.ItemSeeds;
  6.  
  7. public class ModItemSeeds extends ItemSeeds{
  8.  
  9.     public ModItemSeeds(Block crops, Block soil, String name) {
  10.         super(crops, soil);
  11.         this.setUnlocalizedName(name);
  12.         this.setCreativeTab(CreativeTabs.tabMaterials);
  13.     }
  14. }
Add Comment
Please, Sign In to add comment