aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/helpers
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-11-21 22:00:42 +0100
committerGitHub <noreply@github.com>2021-11-21 22:00:42 +0100
commitfb4fecbf3f8858988e33279f35a49517d079eee4 (patch)
treeef0d47037ba0b5d71ca90bda58b6bd0155c18f08 /src/Java/gtPlusPlus/xmod/gregtech/common/helpers
parentd4e972645c58ee1d86d074b255e078849dd6917a (diff)
parent46218deff159fc88d2a746dd93d4d827b2dee765 (diff)
downloadGT5-Unofficial-fb4fecbf3f8858988e33279f35a49517d079eee4.tar.gz
GT5-Unofficial-fb4fecbf3f8858988e33279f35a49517d079eee4.tar.bz2
GT5-Unofficial-fb4fecbf3f8858988e33279f35a49517d079eee4.zip
Merge pull request #43 from Sphyix/master
Tree Growth Simulator balancing + structurelib
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/helpers')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java b/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java
index 8b3fb9a42f..c728c5d8e8 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/common/helpers/TreeFarmHelper.java
@@ -202,7 +202,7 @@ public class TreeFarmHelper {
)){
if (!testBlock.getUnlocalizedName().toLowerCase().contains("air") || !testBlock.getUnlocalizedName().toLowerCase().contains("pumpkin")) {
- Logger.WARNING("5:"+testBlock.getUnlocalizedName());
+ //Logger.WARNING("5:"+testBlock.getUnlocalizedName());
} else {
aBaseMetaTileEntity.getWorld().setBlock(aBaseMetaTileEntity.getXCoord()+xDir+i, aBaseMetaTileEntity.getYCoord()+h, aBaseMetaTileEntity.getZCoord()+zDir+j, Blocks.bookshelf);
}
@@ -222,14 +222,14 @@ public class TreeFarmHelper {
){
if (!testBlock.getUnlocalizedName().toLowerCase().contains("air") || !testBlock.getUnlocalizedName().toLowerCase().contains("pumpkin")) {
- Logger.WARNING("0:"+testBlock.getUnlocalizedName());
+ //Logger.WARNING("0:"+testBlock.getUnlocalizedName());
} else {
aBaseMetaTileEntity.getWorld().setBlock(aBaseMetaTileEntity.getXCoord()+xDir+i, aBaseMetaTileEntity.getYCoord()+h, aBaseMetaTileEntity.getZCoord()+zDir+j, Blocks.melon_block);
}
if (isLeaves(testBlock) || isWoodLog(testBlock)){
- Logger.WARNING("1:"+testBlock.getUnlocalizedName());
+ //Logger.WARNING("1:"+testBlock.getUnlocalizedName());
int posiX, posiY, posiZ;
posiX = aBaseMetaTileEntity.getXCoord()+xDir+i;
posiY = aBaseMetaTileEntity.getYCoord()+h;
@@ -440,10 +440,10 @@ public class TreeFarmHelper {
public static boolean isSapling(final Block log){
if (log != null){
if (OrePrefixes.sapling.contains(new ItemStack(log, 1))){
- Logger.WARNING(""+log.getLocalizedName());
+ //Logger.WARNING(""+log.getLocalizedName());
}
if (log.getLocalizedName().toLowerCase().contains("sapling")){
- Logger.WARNING(""+log.getLocalizedName());
+ //Logger.WARNING(""+log.getLocalizedName());
return true;
}
}