Basic reformat, hit once, hope never again
This commit is contained in:
@@ -18,10 +18,12 @@
|
||||
|
||||
package appeng.util;
|
||||
|
||||
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
import net.minecraft.world.World;
|
||||
|
||||
|
||||
public class BlockUpdate implements Callable
|
||||
{
|
||||
|
||||
@@ -30,7 +32,8 @@ public class BlockUpdate implements Callable
|
||||
final int y;
|
||||
final int z;
|
||||
|
||||
public BlockUpdate(World w, int x, int y, int z) {
|
||||
public BlockUpdate( World w, int x, int y, int z )
|
||||
{
|
||||
this.w = w;
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
@@ -40,10 +43,9 @@ public class BlockUpdate implements Callable
|
||||
@Override
|
||||
public Object call() throws Exception
|
||||
{
|
||||
if ( this.w.blockExists( this.x, this.y, this.z ) )
|
||||
if( this.w.blockExists( this.x, this.y, this.z ) )
|
||||
this.w.notifyBlocksOfNeighborChange( this.x, this.y, this.z, Platform.AIR );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user