Skip to content

Commit

Permalink
param rename
Browse files Browse the repository at this point in the history
  • Loading branch information
Marty Plummer committed Sep 27, 2014
1 parent 04287ce commit 05fa1a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/creepypastacraft/common/tile/TileLaptop.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public boolean renderAsNormalBlock() {
return false;
}

public void breakBlock(World world, int x, int y, int z, Block block, int par6) {
public void breakBlock(World world, int x, int y, int z, Block tile, int par6) {
//world.func_147453_f(x, y, z, block);
world.removeTileEntity(x, y, z);
super.breakBlock(world, x, y, z, block, par6);
super.breakBlock(world, x, y, z, tile, par6);
}

public boolean onBlockActivated(World world, int x, int y, int z,
Expand Down

0 comments on commit 05fa1a2

Please sign in to comment.