Examples of LocalBiome


Examples of com.khorn.terraincontrol.LocalBiome

    // Can return null
    public SaplingGen getSaplingGen(LocalWorld world, SaplingType type, int x, int z)
    {
        try
        {
            LocalBiome biome = world.getSavedBiome(x, z);
            TerrainControl.log(LogMarker.INFO, "Biome: {}" + biome.getName());
            return biome.getBiomeConfig().getSaplingGen(type);
        } catch (BiomeNotFoundException e)
        {
            return null;
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.