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
+1 -1
View File
@@ -45,7 +45,7 @@ public class BlockUpdate implements Callable
{
if( this.w.blockExists( this.x, this.y, this.z ) )
{
this.w.notifyBlocksOfNeighborChange( this.x, this.y, this.z, Platform.AIR );
this.w.notifyBlocksOfNeighborChange( this.x, this.y, this.z, Platform.AIR_BLOCK );
}
return true;
+1 -1
View File
@@ -151,7 +151,7 @@ import appeng.util.prioitylist.IPartitionList;
public class Platform
{
public static final Block AIR = Blocks.air;
public static final Block AIR_BLOCK = Blocks.air;
public static final int DEF_OFFSET = 16;