Guest User

Untitled

a guest
Aug 15th, 2015
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1. package com.halestormxv.blocks;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5. import net.minecraft.world.IBlockAccess;
  6.  
  7. public class CelStone extends Block {
  8.  
  9.     protected CelStone(Material material) {
  10.         super(material);
  11.         this.setHardness(6.0F);
  12.         this.setResistance(15.0F);
  13.         this.setLightLevel(0.6F);
  14.     }
  15.    
  16.     @Override
  17.     public boolean isOpaqueCube(){
  18.         return false;
  19.     }
  20.  
  21.     @Override
  22.     public boolean shouldSideBeRendered(IBlockAccess blockaccess, int x, int y, int z, int side){
  23.         return true;
  24.     }
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment