This commit is contained in:
RePixelatedMC 2024-08-17 13:55:32 +02:00
parent 62e98cc371
commit 7b283a56ee
3 changed files with 3 additions and 2 deletions

View File

@ -51,6 +51,7 @@ import java.io.*;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.NetworkInterface; import java.net.NetworkInterface;
import java.util.*; import java.util.*;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.zip.GZIPInputStream; import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream; import java.util.zip.GZIPOutputStream;

View File

@ -177,7 +177,7 @@ public class IrisPregenerator {
// updater.start(); // updater.start();
// } // }
} else { } else {
IrisPackBenchmarking.instance.finishedBenchmark(chunksPerSecondHistory); IrisPackBenchmarking.getInstance().finishedBenchmark(chunksPerSecondHistory);
} }
} }

View File

@ -64,7 +64,7 @@ public class IrisJigsawStructurePlacement implements IRare {
private int separation = -1; private int separation = -1;
@Desc("The method used to spread the structure") @Desc("The method used to spread the structure")
private SpreadType spreadType = SpreadType.TRIANGULAR; private SpreadType spreadType = SpreadType.LINEAR;
@ArrayType(type = IrisJigsawMinDistance.class) @ArrayType(type = IrisJigsawMinDistance.class)
@Desc("List of minimum distances to check for") @Desc("List of minimum distances to check for")