aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java
index 81a25b3266..87f8d81bb2 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/chemplant/GregtechMTE_ChemicalPlant.java
@@ -999,9 +999,9 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase {
if (aRecipeCatalyst.isItemEqual(aInput)) {
if (aInput.stackSize == 1) {
int damage = getDamage(aInput) + aMaxParrallel;
- if (damage >getMaxCatalystDuarbilerty() ) {
+ if (damage > getMaxCatalystDurability() ) {
aOutPut.add(aInput);
- allowedParrallel += aMaxParrallel + (getMaxCatalystDuarbilerty() - damage);
+ allowedParrallel += aMaxParrallel + (getMaxCatalystDurability() - damage);
if (allowedParrallel >aMaxParrallel ) {
return aMaxParrallel;
}
@@ -1055,7 +1055,7 @@ public class GregtechMTE_ChemicalPlant extends GregtechMeta_MultiBlockBase {
setDamage(aStack,damage);
}
}
- else
+ else {
log("not consuming catalyst");
}
}