forked from xjboss/KCauldronX
Update to Forge 10.13.3.1388. Small fixes.
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
public static final int revisionVersion = 3;
|
||||
//This number is incremented every time Jenkins builds Forge, and never reset. Should always be 0 in the repo code.
|
||||
- public static final int buildVersion = 0;
|
||||
+ public static final int buildVersion = 1370; // Cauldron
|
||||
+ public static final int buildVersion = 1388; // Cauldron
|
||||
|
||||
private static Status status = PENDING;
|
||||
private static String target = null;
|
||||
|
@ -0,0 +1,11 @@
|
||||
--- ../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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user