Advertisement
hassansyyid

Untitled

Nov 12th, 2015
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package io.github.hsyyid.wilsonsmp.blocks;
  2.  
  3. import net.minecraft.block.BlockIce;
  4. import net.minecraft.block.state.IBlockState;
  5. import net.minecraft.util.BlockPos;
  6. import net.minecraft.world.World;
  7.  
  8. import java.util.Random;
  9.  
  10. public class IceBlock extends BlockIce
  11. {
  12.     @Override
  13.     public void updateTick(World worldIn, BlockPos pos, IBlockState state, Random rand)
  14.     {
  15.         ;
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement