Puts everywhere brackets
This commit is contained in:
@@ -52,7 +52,9 @@ public class ChunkOnly extends StandardWorld
|
||||
public int getBlockMetadata( int x, int y, int z )
|
||||
{
|
||||
if( this.range( x, y, z ) )
|
||||
{
|
||||
return this.target.getBlockMetadata( x & 0xF, y, z & 0xF );
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -60,7 +62,9 @@ public class ChunkOnly extends StandardWorld
|
||||
public Block getBlock( int x, int y, int z )
|
||||
{
|
||||
if( this.range( x, y, z ) )
|
||||
{
|
||||
return this.target.getBlock( x & 0xF, y, z & 0xF );
|
||||
}
|
||||
return Platform.AIR;
|
||||
}
|
||||
|
||||
@@ -88,7 +92,9 @@ public class ChunkOnly extends StandardWorld
|
||||
public void done()
|
||||
{
|
||||
if( this.verticalBits != 0 )
|
||||
{
|
||||
Platform.sendChunk( this.target, this.verticalBits );
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user