Merge pull request #1422 from thatsIch/e-constant-naming-convention

Replaces all constants regarding their naming conventions
This commit is contained in:
thatsIch
2015-05-08 23:45:44 +02:00
23 changed files with 70 additions and 70 deletions
@@ -136,8 +136,8 @@ public class CachedPlane
// don't skip air, just let the code replace it...
if( blk != null && blk.isAir( c.worldObj, te.xCoord, te.yCoord, te.zCoord ) && blk.isReplaceable( c.worldObj, te.xCoord, te.yCoord, te.zCoord ) )
{
c.worldObj.setBlock( te.xCoord, te.yCoord, te.zCoord, Platform.AIR );
c.worldObj.notifyBlocksOfNeighborChange( te.xCoord, te.yCoord, te.zCoord, Platform.AIR );
c.worldObj.setBlock( te.xCoord, te.yCoord, te.zCoord, Platform.AIR_BLOCK );
c.worldObj.notifyBlocksOfNeighborChange( te.xCoord, te.yCoord, te.zCoord, Platform.AIR_BLOCK );
}
else
{
@@ -391,7 +391,7 @@ public class CachedPlane
{
if( blk[0] == matrixFrameBlock )
{
blk[0] = Platform.AIR;
blk[0] = Platform.AIR_BLOCK;
}
}