Guest User

crop class

a guest
Nov 5th, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package theceruleanflash.TCFMod;
  2.  
  3. import net.minecraft.block.BlockCrops;
  4. import net.minecraft.init.Items;
  5. import net.minecraft.item.Item;
  6. import net.minecraft.util.IIcon;
  7.  
  8.  
  9. public class CropRice extends BlockCrops{
  10.  
  11. /**
  12. * seeds
  13. */
  14. @Override
  15. protected Item func_149866_i()
  16. {
  17. return TCFMod.itemRiceSeed;
  18. }
  19.  
  20. /**
  21. * crop
  22. */
  23. @Override
  24. protected Item func_149865_P()
  25. {
  26. return TCFMod.itemRiceCrop;
  27. }
  28.  
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment