Rise Hot coolant -> heat conversion ration in IC2 heat exchanger by 20% to avoid rounding bug
This commit is contained in:
parent
451b501424
commit
291bdd1529
1 changed files with 2 additions and 2 deletions
|
@ -1845,7 +1845,7 @@ public class GT_MachineRecipeLoader implements Runnable {
|
|||
Map.Entry<String, HeatExchangeProperty> tEntry = tIterator.next();
|
||||
if(tEntry.getKey().equals("ic2hotcoolant")){
|
||||
tIterator.remove();
|
||||
Recipes.liquidCooldownManager.addFluid("ic2hotcoolant", "ic2coolant", 80);
|
||||
Recipes.liquidCooldownManager.addFluid("ic2hotcoolant", "ic2coolant", 100);
|
||||
}
|
||||
}
|
||||
} catch (Throwable e) {/*Do nothing*/}
|
||||
|
@ -1857,7 +1857,7 @@ public class GT_MachineRecipeLoader implements Runnable {
|
|||
Map.Entry<String, HeatExchangeProperty> tEntry = tIterator.next();
|
||||
if(tEntry.getKey().equals("ic2coolant")){
|
||||
tIterator.remove();
|
||||
Recipes.liquidHeatupManager.addFluid("ic2coolant", "ic2hotcoolant", 80);
|
||||
Recipes.liquidHeatupManager.addFluid("ic2coolant", "ic2hotcoolant", 100);
|
||||
}
|
||||
}
|
||||
} catch (Throwable e) {/*Do nothing*/}
|
||||
|
|
Loading…
Reference in a new issue