[Bleeding] Audit of onPlace methods, Moved to postPlace as appropriate.

Closes BUKKIT-89
This commit is contained in:
Tahg
2012-01-17 19:37:58 -05:00
committed by EvilSeph
parent e92bdab57a
commit c7716e1de4
12 changed files with 645 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ public class BlockDragonEgg extends Block {
super(i, j, Material.DRAGON_EGG);
}
public void onPlace(World world, int i, int j, int k) {
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)
world.c(i, j, k, this.id, this.d());
}