Mekanism universal cables don't give enough energy to IC2 machines
djpadbit opened this issue ยท 1 comments
Issue description:
In the latest release of Mekanism, the universal cables don't give enough energy to IC2 machines.
Steps to reproduce:
- Grab any IC2 machine (I use the electric furnace but anything works)
- Plop in some overclockers to make it consume a bit of energy (something like 20 is enough)
- Connect a Mekanism universal cable to power it
- And the machine shouldn't have enough power to run continuously (like it did before 9.7.3.374)
Versions:
Forge: 14.23.5.2836
Mekanism: 9.7.3.374
IC2: 2.8.145-ex112
From my understanding, the problem comes from this commit b3663a3, and this line of code
The simulated energy transfer isn't converted back to the proper unit and is returned as EU, changing the line to
return fromEU(toTransfer);
seems to fix the issue.