Examples of BiomeGenStorage


Examples of appeng.spatial.BiomeGenStorage

      {
        config.storageBiomeID = Platform.findEmpty( BiomeGenBase.getBiomeGenArray() );
        if ( config.storageBiomeID == -1 )
          throw new RuntimeException( "Biome Array is full, please free up some Biome ID's or disable spatial." );

        storageBiome = new BiomeGenStorage( config.storageBiomeID );
        config.save();
      }

      if ( !force && config.storageBiomeID != -1 )
        storageBiome = new BiomeGenStorage( config.storageBiomeID );
    }

    if ( config.storageProviderID != -1 )
    {
      DimensionManager.registerProviderType( config.storageProviderID, StorageWorldProvider.class, false );
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.