Package appeng.core

Examples of appeng.core.AEConfig


  public Chunk provideChunk(int x, int z)
  {
    Chunk chunk = new Chunk( w, blocks, x, z );

    byte[] biomes = chunk.getBiomeArray();
    AEConfig config = AEConfig.instance;

    for (int k = 0; k < biomes.length; ++k)
      biomes[k] = (byte) config.storageBiomeID;

    if ( !chunk.isTerrainPopulated )
View Full Code Here

TOP

Related Classes of appeng.core.AEConfig

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.