Don't do physics updates in world generation. Fixes BUKKIT-3747

This commit is contained in:
Travis Watkins 2013-04-16 07:09:32 -05:00
parent 40e6308718
commit 708b0e6ae1

View File

@ -30,7 +30,13 @@ public abstract class WorldGenerator {
if (this.a) {
world.setTypeIdAndData(i, j, k, l, i1);
} else {
world.setTypeIdAndData(i, j, k, l, i1);
// CraftBukkit start - Layering violation :(
if (world instanceof World) {
((World) world).setTypeIdAndData(i, j, k, l, i1, 2);
} else {
world.setRawTypeIdAndData(i, j, k, l, i1);
}
// CraftBukkit end
}
}
}