aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi
diff options
context:
space:
mode:
authorSphyix <masifede2@gmail.com>2021-11-20 16:20:13 +0100
committerSphyix <masifede2@gmail.com>2021-11-20 16:20:13 +0100
commit621165d82bbac52f03fbf7d0627ddff7df3922d6 (patch)
tree01c11b1e28487b3408c9651ccd38da7a66bfe0fb /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi
parentd4e972645c58ee1d86d074b255e078849dd6917a (diff)
downloadGT5-Unofficial-621165d82bbac52f03fbf7d0627ddff7df3922d6.tar.gz
GT5-Unofficial-621165d82bbac52f03fbf7d0627ddff7df3922d6.tar.bz2
GT5-Unofficial-621165d82bbac52f03fbf7d0627ddff7df3922d6.zip
enabled, balanced(?) wood multiblock
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java
index ed101e7ab9..a136bf33b8 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntityTreeFarm.java
@@ -154,12 +154,7 @@ public class GregtechMetaTileEntityTreeFarm extends GregtechMeta_MultiBlockBase
}
public boolean checkRecipe(final ItemStack aStack) {
-
- if (true) {
- return false;
- }
-
-
+
//Logger.WARNING("Trying to process virtual tree farming");
if (mTreeData != null) {
//Logger.WARNING("Tree Data is valid");
@@ -197,7 +192,7 @@ public class GregtechMetaTileEntityTreeFarm extends GregtechMeta_MultiBlockBase
//Logger.WARNING("Output Chance - "+aChance+" | Valid number? "+(aChance < 1000));
if (aChance < 8) {
//1% Chance per Tick
- for (int u=0; u<(Math.max(20, (MathUtils.randInt((3*tTier), 100)*tTier*tTier)/8));u++) {
+ for (int u=0; u<(Math.max(4, (MathUtils.randInt((3*tTier), 100)*tTier*tTier)/14));u++) {
aOutputs = mTreeData.generateOutput(0);
if (aOutputs.size() > 0) {
Logger.WARNING("Generated some Loot, adding it to the output busses");