3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 20:40:07 +01:00

[Bleeding] Allow generation of cocoa trees.

Dieser Commit ist enthalten in:
GJ 2014-04-28 10:18:55 -04:00
Ursprung d91ee7d7ab
Commit 76e6277175

Datei anzeigen

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