Made Snowmen obey animal spawning rules (thanks Amaranth)

Dieser Commit ist enthalten in:
Nathan Adams 2011-11-28 05:18:41 +00:00
Ursprung fe3756f7a0
Commit aa90f2ff9c

Datei anzeigen

@ -36,7 +36,7 @@ public class BlockPumpkin extends Block {
public void a(World world, int i, int j, int k) {
super.a(world, i, j, k);
if (world.getTypeId(i, j - 1, k) == Block.SNOW_BLOCK.id && world.getTypeId(i, j - 2, k) == Block.SNOW_BLOCK.id) {
if (!world.isStatic) {
if (!world.isStatic && world.getServer().getServer().spawnAnimals) { // CraftBukkit - make snowmen obey spawning rules
world.setTypeId(i, j, k, 0);
world.setTypeId(i, j - 1, k, 0);
world.setTypeId(i, j - 2, k, 0);