Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.nuparu.sevendaystomine.item;
- import net.minecraft.block.Block;
- import net.minecraft.item.ItemBlock;
- public class ItemSmallRock extends ItemBlock {
- public ItemSmallRock(Block block) {
- super(block);
- this.setMaxDamage(0);
- this.setHasSubtypes(true);
- }
- public int getMetadata(int damage) {
- return damage;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment