Examples of TCWorldChunkManager


Examples of com.khorn.terraincontrol.bukkit.generator.TCWorldChunkManager

            // Let our biome generator depend on Minecraft's
            ((BukkitVanillaBiomeGenerator) biomeGenerator).setWorldChunkManager(this.world.worldProvider.e);
        } else
        {
            // Let Minecraft's biome generator depend on ours
            this.world.worldProvider.e = new TCWorldChunkManager(this, biomeGenerator);
        }
    }
View Full Code Here

Examples of com.khorn.terraincontrol.forge.generator.TCWorldChunkManager

            WorldChunkManager worldChunkManager = super.getChunkManager(world.getWorld());
            ((ForgeVanillaBiomeGenerator) biomeGenerator).setWorldChunkManager(worldChunkManager);
            return worldChunkManager;
        } else
        {
            return new TCWorldChunkManager(this.worldTC, biomeGenerator);
        }
    }
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.