Updating 1.7.2 repo

This commit is contained in:
WayofTime 2014-04-05 16:00:08 -04:00
parent c9a38c4c10
commit 9dc8a57a2d
76 changed files with 1789 additions and 184 deletions

View file

@ -64,7 +64,7 @@ public class BlockBloodLightSource extends Block
public void addCollisionBoxesToList(World par1World, int par2, int par3, int par4, AxisAlignedBB par5AxisAlignedBB, List par6List, Entity par7Entity)
{
this.setBlockBounds(0.40F, 0.40F, 0.40F, 0.60F, 0.60F, 0.60F);
this.setBlockBounds(0.4f,0.4f,0.4f,0.6f,0.6f,0.6f);
//super.addCollisionBoxesToList(par1World, par2, par3, par4, par5AxisAlignedBB, par6List, par7Entity);
}
@ -72,4 +72,10 @@ public class BlockBloodLightSource extends Block
{
return 0;
}
@Override
public boolean isAirBlock(World world, int x, int y, int z)
{
return true;
}
}