mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 19:55:52 -07:00
Fix for big trees not growing BUKKIT-304 and BUKKIT-365 (thanks M D)
This commit is contained in:
@@ -399,7 +399,7 @@ public class WorldGenBigTree extends WorldGenerator {
|
|||||||
if (!event.isCancelled()) {
|
if (!event.isCancelled()) {
|
||||||
world.setRawTypeId(i, j, k, 0);
|
world.setRawTypeId(i, j, k, 0);
|
||||||
for (BlockState state : event.getBlocks()) {
|
for (BlockState state : event.getBlocks()) {
|
||||||
state.update();
|
state.update(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user