Update CraftBukkit to Minecraft 1.7.2
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user