Increased chunk count to 6000.
This commit is contained in:
@@ -68,7 +68,7 @@ public class UniBiomeIslandGeneratorTest {
|
||||
|
||||
@Test
|
||||
public void testBiomeGenerationMultithread() {
|
||||
int chunksToDo = 280;
|
||||
int chunksToDo = 1000;
|
||||
Runnable g1 = new BiomeGenTask(chunksToDo, 0);
|
||||
Runnable g2 = new BiomeGenTask(chunksToDo, 1);
|
||||
Runnable g3 = new BiomeGenTask(chunksToDo, 2);
|
||||
@@ -94,7 +94,7 @@ public class UniBiomeIslandGeneratorTest {
|
||||
|
||||
@Test
|
||||
public void testBiomeGenerationSingleThread() {
|
||||
Runnable g1 = new BiomeGenTask(1680, 0);
|
||||
Runnable g1 = new BiomeGenTask(6000, 0);
|
||||
|
||||
ExecutorService ex = Executors.newFixedThreadPool(6);
|
||||
ex.execute(g1);
|
||||
|
Reference in New Issue
Block a user