Load all biomes for data packs, not just thought used ones

This commit is contained in:
Daniel Mills
2021-07-24 11:49:47 -04:00
parent 7f1fae307c
commit ac85c75cc4
3 changed files with 16 additions and 12 deletions

View File

@@ -35,7 +35,7 @@ public class MultiBurst {
}
public MultiBurst(String name, int priority, int tc) {
service = Executors.newFixedThreadPool(tc, r -> {
service = Executors.newFixedThreadPool(Math.max(tc, 1), r -> {
tid++;
Thread t = new Thread(r);
t.setName(name + " " + tid);