SPIGOT-1988: Chorus Plant Generation

Dieser Commit ist enthalten in:
md_5 2016-03-20 19:02:48 +11:00
Ursprung c91d092bcd
Commit e56aa46656

Datei anzeigen

@ -404,6 +404,8 @@ public class CraftWorld implements World {
}
public boolean generateTree(Location loc, TreeType type) {
BlockPosition pos = new BlockPosition(loc.getBlockX(), loc.getBlockY(), loc.getBlockZ());
net.minecraft.server.WorldGenerator gen;
switch (type) {
case BIG_TREE:
@ -459,13 +461,16 @@ public class CraftWorld implements World {
case TALL_BIRCH:
gen = new WorldGenForest(true, true);
break;
case CHORUS_PLANT:
BlockChorusFlower.a(world, pos, rand, 8);
return true;
case TREE:
default:
gen = new WorldGenTrees(true);
break;
}
return gen.generate(world, rand, new BlockPosition(loc.getBlockX(), loc.getBlockY(), loc.getBlockZ()));
return gen.generate(world, rand, pos);
}
public boolean generateTree(Location loc, TreeType type, BlockChangeDelegate delegate) {