3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 20:40:08 +01:00

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

Dieser Commit ist enthalten in:
Tahg 2011-12-20 17:47:32 -05:00
Ursprung 299a0d0919
Commit 474b7838a6

Datei anzeigen

@ -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);
}
}
}