aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-10 11:01:32 +0000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-12-10 11:01:32 +0000
commit2525ff075586759657e89b9f01969f0596bca2df (patch)
treea492c6396f067e2c1e7feb2dd79b01b0c5c3c8df /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines
parent051c46ab36a749954cff3bae1fbd44cea6f1fc99 (diff)
downloadGT5-Unofficial-2525ff075586759657e89b9f01969f0596bca2df.tar.gz
GT5-Unofficial-2525ff075586759657e89b9f01969f0596bca2df.tar.bz2
GT5-Unofficial-2525ff075586759657e89b9f01969f0596bca2df.zip
% Changed name of custom GT++ Programmed Circuit to Programmed Bio Circuit.
$ Fixed getNumberedBioCircuit() in CI. $ Fixed an issue where stripped fields were referenced in server side bytecode. $ Fixed Tooltips not working as intended for items giving custom GT++ Multi behaviour. $ Fixed 'No Bonus Output Chance' item not registering correctly.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java
index 38c80ce8c4..81afe2b147 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java
@@ -564,10 +564,15 @@ public class GregtechMTE_AlgaePondBase extends GregtechMeta_MultiBlockBase {
return tRecipe;
}
- private static WeightedCollection<ItemStack> generateWeightedCollection(){
+ private static ItemStack[] getOutputForTier(int aTier){
+ ItemStack[] aOutputs = new ItemStack[16];
+
+
+
+
WeightedCollection<ItemStack> aCollection = new WeightedCollection<ItemStack>();
- return aCollection;
+ return aOutputs;
}