Potential fix for terrain 3 worlds.

This commit is contained in:
Jesse Boyd 2016-06-21 00:29:39 +10:00
parent 3fabfa10d7
commit f6fec56677

View File

@ -140,7 +140,9 @@ public class AugmentedUtils {
generator.generateChunk(scoped, area, r); generator.generateChunk(scoped, area, r);
generator.populateChunk(scoped, area, r); generator.populateChunk(scoped, area, r);
} }
queue.flush(); if (queue != null) {
queue.flush();
}
return toReturn; return toReturn;
} }
} }