Increased chunk count to 6000.
This commit is contained in:
parent
61a6bbaa4f
commit
b49f50f728
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user