From e267de811ccf98c7977244bad8e231b05c2cb0d4 Mon Sep 17 00:00:00 2001 From: Alkalus Date: Sat, 7 Oct 2017 14:21:43 +1000 Subject: + Made Alloy Blast Smelter actually check for a muffler. % Changed Industrial Electrolyzer controller texture. % Changed Large Sifter controller texture. $ Fixed names of custom IC2 cells. $ Fixed the empty item having an invalid texture. --- .../implementations/base/GregtechMeta_MultiBlockBase.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity') 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 5949d008ff..738b14e3d7 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 @@ -1004,12 +1004,15 @@ public abstract class GregtechMeta_MultiBlockBase extends MetaTileEntity { int tempTime = MathUtils.findPercentageOfInt(cloneRecipe.mDuration, (100-percentage)); cloneRecipe.mDuration = tempTime; if (cloneRecipe.mDuration < originalTime){ + Utils.LOG_INFO("Generated recipe with a smaller time. | "+originalTime+" | "+cloneRecipe.mDuration+" |"); return cloneRecipe; } else { + Utils.LOG_INFO("Did not generate recipe with a smaller time. | "+originalTime+" | "+cloneRecipe.mDuration+" |"); return tRecipe; } } + Utils.LOG_INFO("Error generating recipe, returning null."); return null; -- cgit