Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
1package net.minecraft.server;
2
3import java.util.Random;
4
5public class BlockMobSpawner extends BlockContainer {
6
7 protected BlockMobSpawner(int i, int j) {
8 super(i, j, Material.STONE);
9 }
10
11 protected TileEntity a_() {
12 return new TileEntityMobSpawner();
13 }
14
15 public int a(int i, Random random) {
16 return 0;
17 }
18
19 public int a(Random random) {
20 return 0;
21 }
22
23 public boolean a() {
24 return false;
25 }
26}