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 ) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ public interface IMeteoriteWorld
|
||||
|
||||
void setBlock( int i, int j, int k, Block blk );
|
||||
|
||||
void setBlock( int i, int j, int k, Block blk_b, int meta_b, int l );
|
||||
void setBlock( int i, int j, int k, Block block, int meta, int l );
|
||||
|
||||
void done();
|
||||
}
|
||||
@@ -104,11 +104,11 @@ public class StandardWorld implements IMeteoriteWorld
|
||||
}
|
||||
|
||||
@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.w.setBlock( x, y, z, blk, metadata, flags );
|
||||
this.w.setBlock( x, y, z, block, meta, flags );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user