Merge pull request #1422 from thatsIch/e-constant-naming-convention
Replaces all constants regarding their naming conventions
This commit is contained in:
@@ -65,7 +65,7 @@ public class ChunkOnly extends StandardWorld
|
||||
{
|
||||
return this.target.getBlock( x & 0xF, y, z & 0xF );
|
||||
}
|
||||
return Platform.AIR;
|
||||
return Platform.AIR_BLOCK;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -73,7 +73,7 @@ public class Fallout
|
||||
}
|
||||
else
|
||||
{
|
||||
this.putter.put( w, x, y, z, Platform.AIR );
|
||||
this.putter.put( w, x, y, z, Platform.AIR_BLOCK );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ public class FalloutCopy extends Fallout
|
||||
}
|
||||
else if( a > AIR_BLOCK_THRESHOLD )
|
||||
{
|
||||
this.putter.put( w, x, y, z, Platform.AIR );
|
||||
this.putter.put( w, x, y, z, Platform.AIR_BLOCK );
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -65,7 +65,7 @@ public class StandardWorld implements IMeteoriteWorld
|
||||
{
|
||||
return this.w.getBlock( x, y, z );
|
||||
}
|
||||
return Platform.AIR;
|
||||
return Platform.AIR_BLOCK;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user