Package com.khorn.terraincontrol

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

Related Classes of com.khorn.terraincontrol.LocalBiome

Copyright © 2018 www.massapicom. 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.