Skip to content

Commit

Permalink
Remove craftingSpeed limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
gigabit101 committed Oct 17, 2023
1 parent 5de473e commit 088631d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

mod_version = 5.0.5
mod_version = 5.0.6
mod_id = rebornstorage
maven_group = gigabit101

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ public int getUpdateInterval()
@Override
public int getMaximumSuccessfulCraftingUpdates()
{
return Math.max(getCraftingCpus() / Math.max(craftingSpeed, 1), 1);
return getCraftingCpus();
}

public int getCraftingCpus()
Expand Down

0 comments on commit 088631d

Please sign in to comment.