aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/api
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-08 03:36:21 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-08 03:36:21 +0000
commite49fbd1330c0875ff531ff25119afe15b54c9448 (patch)
treef74277077620b21df5dae75083975be3ca11dc8a /src/Java/gtPlusPlus/xmod/gregtech/api
parent10d4c7d4b4fd651d64f17936a916785b36a43f92 (diff)
downloadGT5-Unofficial-e49fbd1330c0875ff531ff25119afe15b54c9448.tar.gz
GT5-Unofficial-e49fbd1330c0875ff531ff25119afe15b54c9448.tar.bz2
GT5-Unofficial-e49fbd1330c0875ff531ff25119afe15b54c9448.zip
+ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java6
1 files changed, 3 insertions, 3 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 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<aRecipeSlotsRequired;o++) {
int aStackToRemove = (aStackSize -= 64) > 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;
}
}