Fixed Reborn Storage crafting slower than normal.

This commit is contained in:
raoulvdberge
2018-08-02 20:26:00 +02:00
parent 70f96a4b02
commit 4a9aa52280
2 changed files with 4 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
### 1.6.3 ### 1.6.3
- Fixed crash with Wireless Fluid Grid (raoulvdberge) - 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) - Re-added a single mode Wrench that can rotate blocks and break Refined Storage covers (raoulvdberge)
### 1.6.2 ### 1.6.2

View File

@@ -798,6 +798,8 @@ public class CraftingTask implements ICraftingTask {
private int getTickInterval(int speedUpgrades) { private int getTickInterval(int speedUpgrades) {
switch (speedUpgrades) { switch (speedUpgrades) {
case 0:
return 10;
case 1: case 1:
return 8; return 8;
case 2: case 2:
@@ -806,9 +808,8 @@ public class CraftingTask implements ICraftingTask {
return 4; return 4;
case 4: case 4:
return 2; return 2;
case 0:
default: default:
return 10; return 2;
} }
} }