mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 21:19:00 +01:00
Add missed tree types for Minecraft 1.7. Adds BUKKIT-5042
This commit adds support for the Tree Types that weren't added in the initial update to Minecraft 1.7. Pulled from PR #1277
This commit is contained in:
parent
2191599f4b
commit
9a6d035998
@ -393,6 +393,12 @@ public class CraftWorld implements World {
|
||||
case DARK_OAK:
|
||||
gen = new WorldGenForestTree(true);
|
||||
break;
|
||||
case MEGA_REDWOOD:
|
||||
gen = new WorldGenMegaTree(true, rand.nextBoolean());
|
||||
break;
|
||||
case TALL_BIRCH:
|
||||
gen = new WorldGenForest(true, true);
|
||||
break;
|
||||
case TREE:
|
||||
default:
|
||||
gen = new WorldGenTrees(true);
|
||||
|
Loading…
Reference in New Issue
Block a user