Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
- // Jad home page: http://www.kpdus.com/jad.html
- // Decompiler options: packimports(3) braces deadcode
- package net.minecraft.src;
- import java.util.Random;
- // Referenced classes of package net.minecraft.src:
- // Block, Material, World, EntityFallingSand,
- // BlockFire
- public class BlockSand extends Block
- {
- public BlockSand(int i, int j)
- {
- super(i, j, Material.sand);
- }
- public void onBlockAdded(World world, int i, int j, int k)
- {
- world.scheduleBlockUpdate(i, j, k, blockID, tickRate());
- }
- public void onNeighborBlockChange(World world, int i, int j, int k, int l)
- {
- world.scheduleBlockUpdate(i, j, k, blockID, tickRate());
- }
- public void updateTick(World world, int i, int j, int k, Random random)
- {
- tryToFall(world, i, j, k);
- }
- private void tryToFall(World world, int i, int j, int k)
- {
- int l = i;
- int i1 = j;
- int j1 = k;
- if(canFallBelow(world, l, i1 - 1, j1) && i1 >= 0)
- {
- byte byte0 = 32;
- if(fallInstantly || !world.checkChunksExist(i - byte0, j - byte0, k - byte0, i + byte0, j + byte0, k + byte0))
- {
- world.setBlockWithNotify(i, j, k, 0);
- for(; canFallBelow(world, i, j - 1, k) && j > 0; j--) { }
- if(j > 0)
- {
- world.setBlockWithNotify(i, j, k, blockID);
- }
- } else
- {
- EntityFallingSand entityfallingsand = new EntityFallingSand(world, (float)i + 0.5F, (float)j + 0.5F, (float)k + 0.5F, blockID);
- world.entityJoinedWorld(entityfallingsand);
- }
- }
- }
- public int tickRate()
- {
- return 3;
- }
- public static boolean canFallBelow(World world, int i, int j, int k)
- {
- int l = world.getBlockId(i, j, k);
- if(l == 0)
- {
- return true;
- }
- if(l == Block.fire.blockID)
- {
- return true;
- }
- Material material = Block.blocksList[l].blockMaterial;
- if(material == Material.water)
- {
- return true;
- }
- return material == Material.lava;
- }
- public int idDropped(int i, Random random)
- {
- return mod_modname.Salt.shiftedIndex;
- }
- public static boolean fallInstantly = false;
- }
Advertisement
Add Comment
Please, Sign In to add comment