aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorxSkewer <43712386+xSkewer@users.noreply.github.com>2022-06-20 04:01:32 -0400
committerGitHub <noreply@github.com>2022-06-20 10:01:32 +0200
commitde616090f8f6a523cb1a69806bcf06e93fd1fb7d (patch)
treee5ae8e183338af554bd6231e6db8f88bf260def1 /src/main
parent355fcfe7f3d702a689a7b41454b4e0516038ddf3 (diff)
downloadGT5-Unofficial-de616090f8f6a523cb1a69806bcf06e93fd1fb7d.tar.gz
GT5-Unofficial-de616090f8f6a523cb1a69806bcf06e93fd1fb7d.tar.bz2
GT5-Unofficial-de616090f8f6a523cb1a69806bcf06e93fd1fb7d.zip
Fix replicator recipe check (#222)
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java
index 2cb8aa3633..b2a85d6527 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_ElementalDuplicator.java
@@ -325,7 +325,7 @@ public class GregtechMTE_ElementalDuplicator extends GregtechMeta_MultiBlockBase
}
ItemStack aDataOrbStack = null;
recipe : for (GT_Recipe nRecipe : this.getRecipeMap().mRecipeList) {
- log("Checking Recipe for: "+(nRecipe.mOutputs.length > 0 && nRecipe.mOutputs[0] != null ? nRecipe.mOutputs[0].getDisplayName() : nRecipe.mFluidOutputs[0].getLocalizedName()));
+ //log("Checking Recipe for: "+(nRecipe.mOutputs.length > 0 && nRecipe.mOutputs[0] != null ? nRecipe.mOutputs[0].getDisplayName() : nRecipe.mFluidOutputs[0].getLocalizedName()));
ItemStack aTempStack = getSpecialSlotStack(nRecipe);
if (aTempStack != null) {
for (ItemStack aItem : aItemInputs) {