Advertisement
Guest User

SaltBlock.java

a guest
May 27th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package com.willymcfly.willycraft.blocks;
  2.  
  3. import com.willymcfly.willycraft.Reference;
  4.  
  5. import net.minecraft.block.Block;
  6. import net.minecraft.block.material.Material;
  7.  
  8. public class Saltblock extends Block {
  9.  
  10. public Saltblock() {
  11. super(Material.ROCK);
  12. setUnlocalizedName(Reference.WillycraftBlocks.SALTBLOCK.getUnlocalizedName());
  13. setRegistryName(Reference.WillycraftBlocks.SALTBLOCK.getRegistryName());
  14. setHardness(4.0F);
  15. setResistance(17.0F);
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement