Replaces all method parameter regarding their naming conventions
This commit is contained in:
@@ -79,12 +79,12 @@ public class ChunkOnly extends StandardWorld
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBlock( int x, int y, int z, Block blk, int metadata, int flags )
|
||||
public void setBlock( int x, int y, int z, Block block, int meta, int flags )
|
||||
{
|
||||
if( this.range( x, y, z ) )
|
||||
{
|
||||
this.verticalBits |= 1 << ( y >> 4 );
|
||||
this.w.setBlock( x, y, z, blk, metadata, flags & ( ~2 ) );
|
||||
this.w.setBlock( x, y, z, block, meta, flags & ( ~2 ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user