aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-04-06 19:25:47 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-04-06 19:25:47 +1000
commit36eaf2689501adab7ff968401e028e8b80a259a4 (patch)
tree52956a9fe7205799fbd5de352883c697b4e9e87b /src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity
parent96b66bdf2f05ae4d9fb059ec29a03b86949efce3 (diff)
downloadGT5-Unofficial-36eaf2689501adab7ff968401e028e8b80a259a4.tar.gz
GT5-Unofficial-36eaf2689501adab7ff968401e028e8b80a259a4.tar.bz2
GT5-Unofficial-36eaf2689501adab7ff968401e028e8b80a259a4.zip
$ Tried to do Fancy handling but will probably revert it to the simpler non-per-bus version.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java
index c2d3331128..ea73a836b4 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java
@@ -244,12 +244,14 @@ GT_MetaTileEntity_MultiBlockBase {
long tVoltage = getMaxInputVoltage();
byte tTier = (byte) Math.max(1, GT_Utility.getTier(tVoltage));
+ Logger.WARNING("Running checkRecipeGeneric(0)");
GT_Recipe tRecipe = this.getRecipeMap().findRecipe(
getBaseMetaTileEntity(), mLastRecipe, false,
gregtech.api.enums.GT_Values.V[tTier], aFluidInputs, aItemInputs);
+ Logger.WARNING("Running checkRecipeGeneric(1)");
// Remember last recipe - an optimization for findRecipe()
this.mLastRecipe = tRecipe;