Reverted onPlace changes.

This commit is contained in:
EvilSeph
2012-01-28 01:59:59 -05:00
parent 9d90839723
commit 7bdfea4820
12 changed files with 16 additions and 656 deletions

View File

@@ -195,8 +195,8 @@ public class BlockRedstoneWire extends Block {
}
}
public void postPlace(World world, int i, int j, int k, int l) { // CraftBukkit - onPlace(World, int, int, int) -> postPlace(World, int, int, int, int)
super.postPlace(world, i, j, k, l); // CraftBukkit - onPlace(World, int, int, int) -> postPlace(World, int, int, int, int)
public void onPlace(World world, int i, int j, int k) {
super.onPlace(world, i, j, k);
if (!world.isStatic) {
this.g(world, i, j, k);
world.applyPhysics(i, j + 1, k, this.id);