|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
package net.minecraft.src;
|
|
|
|
|
|
|
|
|
|
import org.mcmodule.math.BigInteger;
|
|
|
|
|
|
|
|
|
|
public class BlockSoulSand extends Block
|
|
|
|
|
{
|
|
|
|
|
public BlockSoulSand(int par1, int par2)
|
|
|
|
@ -12,10 +14,10 @@ public class BlockSoulSand extends Block
|
|
|
|
|
* Returns a bounding box from the pool of bounding boxes (this means this box can change after the pool has been
|
|
|
|
|
* cleared to be reused)
|
|
|
|
|
*/
|
|
|
|
|
public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, int par2, int par3, int par4)
|
|
|
|
|
public AxisAlignedBB getCollisionBoundingBoxFromPool(World par1World, BigInteger par2, int par3, BigInteger par4)
|
|
|
|
|
{
|
|
|
|
|
float var5 = 0.125F;
|
|
|
|
|
return AxisAlignedBB.getAABBPool().addOrModifyAABBInPool((double)par2, (double)par3, (double)par4, (double)(par2 + 1), (double)((float)(par3 + 1) - var5), (double)(par4 + 1));
|
|
|
|
|
return AxisAlignedBB.getAABBPool().addOrModifyAABBInPool((double)par2.doubleValue(), (double)par3, (double)par4.doubleValue(), (double)(par2.doubleValue() + 1), (double)((float)(par3 + 1) - var5), (double)(par4.doubleValue() + 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|