Advertisement
Guest User

Untitled

a guest
Aug 28th, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. @SideOnly(Side.CLIENT)
  2. public void randomDisplayTick(IBlockState stateIn, World worldIn, BlockPos pos, Random rand)
  3. {
  4. ArrayList<BlockPos> positions = getSideToExpand(worldIn, pos);
  5.  
  6. for (BlockPos position : positions)
  7. {
  8. worldIn.setBlockState(position, this.getDefaultState());
  9. }
  10. }
  11.  
  12. private ArrayList<BlockPos> getSideToExpand(World worldIn, BlockPos pos)
  13. {
  14. ArrayList<BlockPos> positions = new ArrayList<BlockPos>();
  15.  
  16. if (worldIn.canBlockBePlaced(this, pos.east(), true, null, null, null) && worldIn.getBlockState(pos.east()) != this.blockState.getBaseState())
  17. {
  18. positions.add(pos.east());
  19. }
  20.  
  21. if (worldIn.canBlockBePlaced(this, pos.west(), true, null, null, null) && worldIn.getBlockState(pos.west()) != this.blockState.getBaseState())
  22. {
  23. positions.add(pos.west());
  24. }
  25.  
  26. if (worldIn.canBlockBePlaced(this, pos.north(), true, null, null, null) && worldIn.getBlockState(pos.north()) != this.blockState.getBaseState())
  27. {
  28. positions.add(pos.north());
  29. }
  30.  
  31. if (worldIn.canBlockBePlaced(this, pos.south(), true, null, null, null) && worldIn.getBlockState(pos.south()) != this.blockState.getBaseState())
  32. {
  33. positions.add(pos.south());
  34. }
  35.  
  36. return positions;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement