Made golems spawning respect spawn-animals for real. Fixes BUKKIT-1124

This commit is contained in:
EvilSeph
2012-03-11 06:28:03 -04:00
parent fadc93060f
commit 0f659850b2
2 changed files with 3 additions and 3 deletions

View File

@@ -41,7 +41,7 @@ public class BlockPumpkin extends BlockDirectional {
super.onPlace(world, i, j, k);
if (world.suppressPhysics) return; // CraftBukkit
if (world.getTypeId(i, j - 1, k) == Block.SNOW_BLOCK.id && world.getTypeId(i, j - 2, k) == Block.SNOW_BLOCK.id) {
if (!world.isStatic && world.getServer().getServer().spawnAnimals) { // CraftBukkit - make snowmen obey spawning rules
if (!world.isStatic) {
// CraftBukkit start - Use BlockStateListPopulator
BlockStateListPopulator blockList = new BlockStateListPopulator(world.getWorld());