aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/helpers
diff options
context:
space:
mode:
authorSphyix <masifede2@gmail.com>2021-11-20 16:42:31 +0100
committerSphyix <masifede2@gmail.com>2021-11-20 16:42:31 +0100
commit3b9804b1b4ee2d11b46794a1336afc4f0372a205 (patch)
treefe5daad72dbd5e95260031983a8b5808dd438aea /src/Java/gtPlusPlus/xmod/gregtech/common/helpers
parent621165d82bbac52f03fbf7d0627ddff7df3922d6 (diff)
downloadGT5-Unofficial-3b9804b1b4ee2d11b46794a1336afc4f0372a205.tar.gz
GT5-Unofficial-3b9804b1b4ee2d11b46794a1336afc4f0372a205.tar.bz2
GT5-Unofficial-3b9804b1b4ee2d11b46794a1336afc4f0372a205.zip
uncommented multi
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;
}
}