Removed more MJ references

This commit is contained in:
MachineMuse 2015-08-29 00:37:10 -06:00
parent 1bde9bc4dc
commit 8bead3071e
2 changed files with 0 additions and 8 deletions

View file

@ -23,8 +23,4 @@ object ElectricConversions {
def museEnergyFromRF(rf: Int): Double = rf * ModCompatibility.getRFRatio
// BC
def museEnergyToMJ(museEnergy: Double): Double = museEnergy / ModCompatibility.getBCRatio
def museEnergyFromMJ(mj: Double): Double = mj * ModCompatibility.getBCRatio
}

View file

@ -57,10 +57,6 @@ public class ModCompatibility {
return Config.getConfig().get(Configuration.CATEGORY_GENERAL, "Energy per IC2 EU", 0.4).getDouble(0.4);
}
public static double getBCRatio() {
return Config.getConfig().get(Configuration.CATEGORY_GENERAL, "Energy per MJ", 1.0).getDouble(1.0);
}
public static double getRFRatio() {
return Config.getConfig().get(Configuration.CATEGORY_GENERAL, "Energy per RF", 0.1).getDouble(0.1);
}