Search in sources :

Example 1 with WorldGenVines

use of net.minecraft.world.gen.feature.WorldGenVines in project SpongeCommon by SpongePowered.

the class VineBuilder method build.

@Override
public Vine build() throws IllegalStateException {
    Vine vine = (Vine) new WorldGenVines();
    vine.setVinesPerChunk(this.count);
    return vine;
}
Also used : Vine(org.spongepowered.api.world.gen.populator.Vine) WorldGenVines(net.minecraft.world.gen.feature.WorldGenVines)

Aggregations

WorldGenVines (net.minecraft.world.gen.feature.WorldGenVines)1 Vine (org.spongepowered.api.world.gen.populator.Vine)1