Update CraftBukkit to Minecraft 1.7.2

This commit is contained in:
mbax
2013-11-04 07:07:38 -06:00
committed by Wesley Wolfe
parent ff8b70fbb7
commit 2726696652
349 changed files with 14339 additions and 11287 deletions

View File

@@ -4,16 +4,16 @@ import java.util.Random;
public class BlockMobSpawner extends BlockContainer {
protected BlockMobSpawner(int i) {
super(i, Material.STONE);
protected BlockMobSpawner() {
super(Material.STONE);
}
public TileEntity b(World world) {
public TileEntity a(World world, int i) {
return new TileEntityMobSpawner();
}
public int getDropType(int i, Random random, int j) {
return 0;
public Item getDropType(int i, Random random, int j) {
return null;
}
public int a(Random random) {
@@ -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.j(world, i, j, k, j1);*/
this.dropExperience(world, i, j, k, j1)*/
}
public int getExpDrop(World world, int data, int enchantmentLevel) {