Rise Hot coolant -> heat conversion ration in IC2 heat exchanger by 20% to avoid rounding bug

This commit is contained in:
Blood-Asp 2016-12-17 18:20:59 +01:00 committed by Technus
parent 451b501424
commit 291bdd1529

View file

@ -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*/}