From aa563b79fea267830f563a9d3d5d61f9f531b16f Mon Sep 17 00:00:00 2001 From: Alkalus Date: Fri, 22 Sep 2017 14:59:49 +1000 Subject: + More Trade Table work. --- .../machines/multi/GregtechMetaTileEntity_Cyclotron.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java index ce04ef8658..a6fc495bab 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_Cyclotron.java @@ -150,11 +150,11 @@ public class GregtechMetaTileEntity_Cyclotron extends GregtechMeta_MultiBlockBas mHardHammer = true; mSolderingTool = true; mCrowbar = true; - Utils.LOG_INFO("Built Cyclotron."); + //Utils.LOG_INFO("Built Cyclotron."); turnCasingActive(true); return true; } - Utils.LOG_INFO("Failed building Cyclotron."); + //Utils.LOG_INFO("Failed building Cyclotron."); return false; } @@ -286,7 +286,7 @@ public class GregtechMetaTileEntity_Cyclotron extends GregtechMeta_MultiBlockBas @Override public boolean checkRecipe(ItemStack aStack) { - Utils.LOG_INFO("Recipe Check."); + //Utils.LOG_INFO("Recipe Check."); ArrayList tItemList = getStoredInputs(); ItemStack[] tItemInputs = (ItemStack[]) tItemList.toArray(new ItemStack[tItemList.size()]); ArrayList tInputList = getStoredFluids(); -- cgit