aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-14 18:54:36 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-14 18:54:36 +1000
commit5afc38eea53b42c7e5a9d3a220611ec5628f7e0a (patch)
tree852e4d72dfbec5955820e95b1bb20abcc2eba69d /src/Java/gtPlusPlus/xmod/gregtech
parent566d184c1185f08be31b8e3a65d58c1c65872e0a (diff)
downloadGT5-Unofficial-5afc38eea53b42c7e5a9d3a220611ec5628f7e0a.tar.gz
GT5-Unofficial-5afc38eea53b42c7e5a9d3a220611ec5628f7e0a.tar.bz2
GT5-Unofficial-5afc38eea53b42c7e5a9d3a220611ec5628f7e0a.zip
+ Started working on the Coal Tar recipes again.
+ Added recipes for Coal Tar Oil, Naphtha, Ethylbenzene and Anthracene.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_PowerSubStationController.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_PowerSubStationController.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_PowerSubStationController.java
index 5fe0522b0a..5f95a28321 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_PowerSubStationController.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_PowerSubStationController.java
@@ -244,8 +244,8 @@ public class GregtechMetaTileEntity_PowerSubStationController extends GT_MetaTil
Utils.LOG_MACHINE_INFO("Returned False 3");
Utils.LOG_MACHINE_INFO("Input Buses: "+this.mInputBusses.size()+" | expected: 1 | "+(this.mInputBusses.size() != 1));
Utils.LOG_MACHINE_INFO("Output Buses: "+this.mOutputBusses.size()+" | expected: 1 | "+(this.mOutputBusses.size() != 1));
- Utils.LOG_MACHINE_INFO("Energy Hatches: "+this.mEnergyHatches.size()+" | expected: < 1 | "+(this.mEnergyHatches.size() < 1));
- Utils.LOG_MACHINE_INFO("Dynamo Hatches: "+this.mDynamoHatches.size()+" | expected: < 1 | "+(this.mDynamoHatches.size() < 1));
+ Utils.LOG_MACHINE_INFO("Energy Hatches: "+this.mEnergyHatches.size()+" | expected: >= 1 | "+(this.mEnergyHatches.size() < 1));
+ Utils.LOG_MACHINE_INFO("Dynamo Hatches: "+this.mDynamoHatches.size()+" | expected: >= 1 | "+(this.mDynamoHatches.size() < 1));
Utils.LOG_MACHINE_INFO("Maint. Hatches: "+this.mMaintenanceHatches.size()+" | expected: 1 | "+(this.mMaintenanceHatches.size() != 1));
return false;
}