Fix for big trees not growing BUKKIT-304 and BUKKIT-365 (thanks M D)

This commit is contained in:
Tahg 2011-12-20 17:47:32 -05:00
parent 299a0d0919
commit 474b7838a6

View File

@ -399,7 +399,7 @@ public class WorldGenBigTree extends WorldGenerator {
if (!event.isCancelled()) {
world.setRawTypeId(i, j, k, 0);
for (BlockState state : event.getBlocks()) {
state.update();
state.update(true);
}
}
}