Basic reformat, hit once, hope never again

This commit is contained in:
thatsIch
2015-04-03 08:54:31 +02:00
parent 4ff1631f89
commit d34c988c88
886 changed files with 31400 additions and 30990 deletions
@@ -42,9 +42,9 @@ public class StorageChunkProvider extends ChunkProviderGenerate
{
BLOCKS = new Block[255 * SQUARE_CHUNK_SIZE];
for ( Block matrixFrameBlock : AEApi.instance().definitions().blocks().matrixFrame().maybeBlock().asSet() )
for( Block matrixFrameBlock : AEApi.instance().definitions().blocks().matrixFrame().maybeBlock().asSet() )
{
for ( int x = 0; x < BLOCKS.length; x++ )
for( int x = 0; x < BLOCKS.length; x++ )
{
BLOCKS[x] = matrixFrameBlock;
}
@@ -67,10 +67,10 @@ public class StorageChunkProvider extends ChunkProviderGenerate
byte[] biomes = chunk.getBiomeArray();
AEConfig config = AEConfig.instance;
for ( int k = 0; k < biomes.length; ++k )
for( int k = 0; k < biomes.length; ++k )
biomes[k] = (byte) config.storageBiomeID;
if ( !chunk.isTerrainPopulated )
if( !chunk.isTerrainPopulated )
{
chunk.isTerrainPopulated = true;
chunk.resetRelightChecks();