mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07:06 +01:00
Fix for big trees not growing BUKKIT-304 and BUKKIT-365 (thanks M D)
This commit is contained in:
parent
299a0d0919
commit
474b7838a6
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue