mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 11:06:29 +01:00
[Bleeding] Allow generation of cocoa trees.
This commit is contained in:
parent
d91ee7d7ab
commit
76e6277175
@ -374,6 +374,9 @@ public class CraftWorld implements World {
|
||||
case SMALL_JUNGLE:
|
||||
gen = new WorldGenTrees(true, 4 + rand.nextInt(7), 3, 3, false);
|
||||
break;
|
||||
case COCOA_TREE:
|
||||
gen = new WorldGenTrees(true, 4 + rand.nextInt(7), 3, 3, true);
|
||||
break;
|
||||
case JUNGLE_BUSH:
|
||||
gen = new WorldGenGroundBush(3, 0);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user