Autocrafting speed issues
Dissgruntled opened this issue ยท 12 comments
RebornStorage-1.12.2-3.2.1.63
RebornCore-1.12.2-3.9.2.319-universal
Refined Storage 1.6.2
Forge 1.12.2 - 14.23.4.2745
Using the latest versions of Reborn Storage and Refined Storage, the multiblock crafter seems extremely slow compared to the RS crafters. I have 28 crafting CPU's in the structure and the speed is the same as it is with only 1. Adding crafting CPU's does not increase crafting speed at all.
i know your pain the newest update of reborn storage broke the crafting unit speed
Humm, in my testing I am sending the correct amount of speed upgrades to Refined Storages API, it prob doesn't like having more than 4 speed upgrades. (26 in my testing) before in older versions of RS this seemed to work fine and the crafting would be very quick.
@raoulvdberge do you have any input on this?
Thanks in advance ๐
Oh:
private int getTickInterval(int speedUpgrades) {
switch (speedUpgrades) {
case 1:
return 8;
case 2:
return 6;
case 3:
return 4;
case 4:
return 2;
case 0:
default:
return 10;
}
}
Will change it to this:
private int getTickInterval(int speedUpgrades) {
switch (speedUpgrades) {
case 1:
return 8;
case 2:
return 6;
case 3:
return 4;
case 4:
return 2;
case 0:
return 10;
default:
return 2;
}
}
Fixed in
yes finally the pain is over and also the wireless fluid grid was also crashing me and its now fixed and
i do not see the fix jar in the files tab of reborn storage or is it the dev jar file