Guest User

Untitled

a guest
Jan 17th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1. package SweetToothMod;
  2.  
  3. import net.minecraft.src.ItemSeeds;
  4.  
  5. public class ItemPeanutSeeds extends ItemSeeds
  6. {
  7.  
  8.     public ItemPeanutSeeds(int i, int j, int k)
  9.     {
  10.         super(i, j, k);
  11.     }
  12.     public String getTextureFile()
  13.     {
  14.         return "/Items/SweetToothItems.png";
  15.     }
  16.     public int getBlockTextureFromSideAndMetadata(int i, int j)
  17.     {
  18.         return 27;
  19.     }
  20.  
  21. }
Add Comment
Please, Sign In to add comment