craftbukkit/src/main/java/net/minecraft/server/BlockMobSpawner.java

42 lines
1,000 B
Java
Raw Normal View History

package net.minecraft.server;
import java.util.Random;
public class BlockMobSpawner extends BlockContainer {
2013-03-13 17:33:27 -05:00
protected BlockMobSpawner(int i) {
super(i, Material.STONE);
}
2013-03-13 17:33:27 -05:00
public TileEntity b(World world) {
return new TileEntityMobSpawner();
}
public int getDropType(int i, Random random, int j) {
return 0;
}
public int a(Random random) {
return 0;
}
public void dropNaturally(World world, int i, int j, int k, int l, float f, int i1) {
super.dropNaturally(world, i, j, k, l, f, i1);
2013-03-24 23:22:32 -05:00
/* CraftBukkit start - Delegate to getExpDrop
int j1 = 15 + world.random.nextInt(15) + world.random.nextInt(15);
2013-03-13 17:33:27 -05:00
this.j(world, i, j, k, j1);*/
}
public int getExpDrop(World world, int data, int enchantmentLevel) {
int j1 = 15 + world.random.nextInt(15) + world.random.nextInt(15);
return j1;
// CraftBukkit end
}
public boolean c() {
return false;
}
}