mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-21 14:39:01 +01:00
SPIGOT-7975: Fix issue with Pale Sapling growing
By: Doc <nachito94@msn.com>
This commit is contained in:
parent
6d16e47300
commit
a4de181b77
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@
|
||||||
+ BlockSapling.treeType = TreeType.TALL_MANGROVE;
|
+ BlockSapling.treeType = TreeType.TALL_MANGROVE;
|
||||||
+ } else if (worldgentreeabstract == TreeFeatures.CHERRY || worldgentreeabstract == TreeFeatures.CHERRY_BEES_005) {
|
+ } else if (worldgentreeabstract == TreeFeatures.CHERRY || worldgentreeabstract == TreeFeatures.CHERRY_BEES_005) {
|
||||||
+ BlockSapling.treeType = TreeType.CHERRY;
|
+ BlockSapling.treeType = TreeType.CHERRY;
|
||||||
+ } else if (worldgentreeabstract == TreeFeatures.PALE_OAK) {
|
+ } else if (worldgentreeabstract == TreeFeatures.PALE_OAK || worldgentreeabstract == TreeFeatures.PALE_OAK_BONEMEAL) {
|
||||||
+ BlockSapling.treeType = TreeType.PALE_OAK;
|
+ BlockSapling.treeType = TreeType.PALE_OAK;
|
||||||
+ } else if (worldgentreeabstract == TreeFeatures.PALE_OAK_CREAKING) {
|
+ } else if (worldgentreeabstract == TreeFeatures.PALE_OAK_CREAKING) {
|
||||||
+ BlockSapling.treeType = TreeType.PALE_OAK_CREAKING;
|
+ BlockSapling.treeType = TreeType.PALE_OAK_CREAKING;
|
||||||
|
|
Loading…
Add table
Reference in a new issue