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