Add BlockMobSpawner and BlockOre for diff visibility

This commit is contained in:
feildmaster
2012-08-08 05:19:19 -05:00
parent a16e0b6323
commit 8d946b88b3
2 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
package net.minecraft.server;
import java.util.Random;
public class BlockMobSpawner extends BlockContainer {
protected BlockMobSpawner(int i, int j) {
super(i, j, Material.STONE);
}
public TileEntity a(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);
int j1 = 15 + world.random.nextInt(15) + world.random.nextInt(15);
this.g(world, i, j, k, j1);
}
public boolean d() {
return false;
}
}