Update CraftBukkit to Minecraft 1.5

This commit is contained in:
Travis Watkins
2013-03-13 17:33:27 -05:00
parent ba6e4c38cf
commit 83d29e461c
246 changed files with 8499 additions and 6759 deletions

View File

@@ -4,11 +4,11 @@ import java.util.Random;
public class BlockMobSpawner extends BlockContainer {
protected BlockMobSpawner(int i, int j) {
super(i, j, Material.STONE);
protected BlockMobSpawner(int i) {
super(i, Material.STONE);
}
public TileEntity a(World world) {
public TileEntity b(World world) {
return new TileEntityMobSpawner();
}
@@ -25,7 +25,7 @@ public class BlockMobSpawner extends BlockContainer {
/* CraftBukkit start - delegate to getExpDrop
int j1 = 15 + world.random.nextInt(15) + world.random.nextInt(15);
this.f(world, i, j, k, j1);*/
this.j(world, i, j, k, j1);*/
}
public int getExpDrop(World world, int data, int enchantmentLevel) {