Fixed Reborn Storage crafting slower than normal.
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
### 1.6.3
|
||||
- Fixed crash with Wireless Fluid Grid (raoulvdberge)
|
||||
- Fixed Reborn Storage crafting slower than normal (raoulvdberge)
|
||||
- Re-added a single mode Wrench that can rotate blocks and break Refined Storage covers (raoulvdberge)
|
||||
|
||||
### 1.6.2
|
||||
|
@@ -798,6 +798,8 @@ public class CraftingTask implements ICraftingTask {
|
||||
|
||||
private int getTickInterval(int speedUpgrades) {
|
||||
switch (speedUpgrades) {
|
||||
case 0:
|
||||
return 10;
|
||||
case 1:
|
||||
return 8;
|
||||
case 2:
|
||||
@@ -806,9 +808,8 @@ public class CraftingTask implements ICraftingTask {
|
||||
return 4;
|
||||
case 4:
|
||||
return 2;
|
||||
case 0:
|
||||
default:
|
||||
return 10;
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user