Merge pull request #1422 from thatsIch/e-constant-naming-convention
Replaces all constants regarding their naming conventions
This commit is contained in:
@@ -64,7 +64,7 @@ public class TileCubeGenerator extends AEBaseTile
|
||||
|
||||
void spawn()
|
||||
{
|
||||
this.worldObj.setBlock( this.xCoord, this.yCoord, this.zCoord, Platform.AIR, 0, 3 );
|
||||
this.worldObj.setBlock( this.xCoord, this.yCoord, this.zCoord, Platform.AIR_BLOCK, 0, 3 );
|
||||
|
||||
Item i = this.is.getItem();
|
||||
int side = ForgeDirection.UP.ordinal();
|
||||
|
||||
@@ -82,7 +82,7 @@ public class ToolEraser extends AEBaseItem
|
||||
if( c_blk == blk && c_meta == meta )
|
||||
{
|
||||
blocks++;
|
||||
world.setBlock( wc.x, wc.y, wc.z, Platform.AIR );
|
||||
world.setBlock( wc.x, wc.y, wc.z, Platform.AIR_BLOCK );
|
||||
|
||||
this.wrappedAdd( world, wc.x + 1, wc.y, wc.z, next );
|
||||
this.wrappedAdd( world, wc.x - 1, wc.y, wc.z, next );
|
||||
|
||||
Reference in New Issue
Block a user