From e49fbd1330c0875ff531ff25119afe15b54c9448 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sun, 8 Dec 2019 03:36:21 +0000 Subject: + Added Algae production to Algae Ponds. + Added a Structure for Algae farm, which is upgradable. + Added some test recipes for Algae via the pond, they will not show in NEI. --- .../implementations/base/GregtechMeta_MultiBlockBase.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api') 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 ece8dfaa87..3c3345d130 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 @@ -473,7 +473,7 @@ GT_MetaTileEntity_MultiBlockBase { public boolean canBufferOutputs(final GT_Recipe aRecipe, int aParallelRecipes) { - Logger.INFO("Determining if we have space to buffer outputs."); + Logger.INFO("Determining if we have space to buffer outputs. Parallel: "+aParallelRecipes); // Null recipe or a recipe with lots of outputs? // E.G. Gendustry custom comb with a billion centrifuge outputs? @@ -542,7 +542,7 @@ GT_MetaTileEntity_MultiBlockBase { int aStackSize = aY.stackSize * aParallelRecipes; if (aStackSize > 64) { int aSlotsNeedsForThisStack = (int) Math.ceil((double) ((float) aStackSize / 64f)); - // Sould round up and add as many stacks as required nicely. + // Should round up and add as many stacks as required nicely. aRecipeSlotsRequired += aSlotsNeedsForThisStack; for (int o=0;o 64 ? 64 : aStackSize; @@ -612,7 +612,7 @@ GT_MetaTileEntity_MultiBlockBase { if (aInputMap.size() > 0) { if (aInputMap.size() > aInputBusSlotsFree) { // We do not have enough free slots in total to accommodate the remaining managed stacks. - Logger.INFO("Failed to find enough space for all item outputs."); + Logger.INFO("Failed to find enough space for all item outputs. Free: "+aInputBusSlotsFree+", Required: "+aInputMap.size()); return false; } } -- cgit