Nuparu00

ItemSmallRock

Apr 28th, 2018
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. package com.nuparu.sevendaystomine.item;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.item.ItemBlock;
  5.  
  6. public class ItemSmallRock extends ItemBlock {
  7.     public ItemSmallRock(Block block) {
  8.         super(block);
  9.         this.setMaxDamage(0);
  10.         this.setHasSubtypes(true);
  11.     }
  12.  
  13.     public int getMetadata(int damage) {
  14.         return damage;
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment