You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
485 B
12 lines
485 B
10 years ago
|
--- ../src-base/minecraft/net/minecraftforge/common/chunkio/ChunkIOExecutor.java
|
||
|
+++ ../src-work/minecraft/net/minecraftforge/common/chunkio/ChunkIOExecutor.java
|
||
|
@@ -22,7 +22,7 @@
|
||
|
}
|
||
|
|
||
|
public static void adjustPoolSize(int players) {
|
||
|
- int size = Math.max(BASE_THREADS, (int) Math.ceil(players / PLAYERS_PER_THREAD));
|
||
|
+ int size = Math.max(BASE_THREADS, (int) Math.ceil((double) players / PLAYERS_PER_THREAD));
|
||
|
instance.setActiveThreads(size);
|
||
|
}
|
||
|
|