Skip to content

Commit 088631d

Browse files
committed
Remove craftingSpeed limitation
1 parent 5de473e commit 088631d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
org.gradle.jvmargs=-Xmx3G
22
org.gradle.daemon=false
33

4-
mod_version = 5.0.5
4+
mod_version = 5.0.6
55
mod_id = rebornstorage
66
maven_group = gigabit101
77

src/main/java/net/gigabit101/rebornstorage/nodes/CraftingNode.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ public int getUpdateInterval()
401401
@Override
402402
public int getMaximumSuccessfulCraftingUpdates()
403403
{
404-
return Math.max(getCraftingCpus() / Math.max(craftingSpeed, 1), 1);
404+
return getCraftingCpus();
405405
}
406406

407407
public int getCraftingCpus()

0 commit comments

Comments
 (0)