Fixed Bug: #0255 - Making a new world with AE2 loaded causes it to not save chunks.

This commit is contained in:
AlgorithmX2
2014-03-29 19:23:11 -05:00
parent 794177b8d2
commit c82663c1ac
2 changed files with 8 additions and 8 deletions
+1 -7
View File
@@ -1,7 +1,6 @@
package appeng.hooks;
import java.util.Random;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import net.minecraft.world.World;
@@ -46,7 +45,6 @@ final public class MeteoriteWorldGen implements IWorldGenerator
try
{
future.get();
if ( obj.distance > AEConfig.instance.minMeteoriteDistanceSq )
@@ -67,11 +65,7 @@ final public class MeteoriteWorldGen implements IWorldGenerator
}
}
catch (InterruptedException e)
{
AELog.error( e );
}
catch (ExecutionException e)
catch (Throwable e)
{
AELog.error( e );
}